跳转到主要内容
提供UID可显著提升广告效果,因此虽为可选项,但强烈建议传入。 Providing a UID significantly improves ad performance. As such, it is optional, but highly recommended. 我们严格遵守所有隐私法规,不存储任何可识别用户身份的数据。UID传入RevIQ后会经过标准化处理并进行哈希加密,原始值不会被保留。 We comply with all privacy regulations and do not store any user-identifiable data. Once passed to RevIQ, the UID is normalized and then hashed; we never store the original value.
如果用户已选择退出追踪,UID将不会被存储或传输。因此,无论用户的追踪偏好如何,调用此函数均是安全的。 If the user has opted out of tracking, the UID will not be stored or transmitted. Thus it is safe to call this function regardless of the user’s tracking preferences.
value
Uid
必填
type Uid = {
  u?: string; // 用户名 username
  e?: string; // 邮箱 email
  p?: string; // 手机号 phone
};
const user = { email: "hachi@rev.iq" };
reviq.setUid({ e: user.email });