Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
타겟팅을 위한 사용자 ID(uid) 제공. 가변 인자.
type Uid = { u?: string; // 사용자 이름 e?: string; // 이메일 p?: string; // 전화번호 };
const user = { email: "hachi@rev.iq" }; reviq.setUid({ e: user.email });
// 가능하면 국가 코드를 포함하세요 const user = { phone: "+1 555-555-5555" }; reviq.setUid({ p: user.phone });
const user = { username: "hachi" }; reviq.setUid({ u: user.username });