ユーザーがトラッキングをオプトアウトしている場合、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 });