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 });