사용자가 추적을 거부한 경우 UID는 저장되거나 전송되지 않습니다.
따라서 사용자의 추적 설정에 관계없이 이 함수를 안전하게 호출할 수 있습니다.
Uid
필수
Documentation Index
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 });