唯一身份用户覆盖面衡量

许多内容制作者和广告客户都想知道有多少唯一身份用户观看了他们的内容。使用共享存储空间记录用户首次看到您的广告、嵌入的视频或发布内容,并防止在不同网站上重复统计同一用户。然后,您可以使用 Private Aggregation API 输出覆盖面的摘要报告。

Shared Storage API 是一个适用于通用跨站存储的 Privacy Sandbox 提案,支持许多可能的用例。Private Aggregation API 是共享存储空间中提供的一种输出,可用于汇总跨网站数据。

试用唯一身份用户覆盖面衡量功能

要尝试将唯一身份用户覆盖面衡量与共享存储空间和私密汇总功能结合使用,请确认您使用的是 Chrome M107 或更高版本。启用 chrome://settings/adPrivacy 下的所有广告隐私权 API。

您还可以在命令行中使用 --enable-features=PrivacySandboxAdsAPIsOverride,OverridePrivacySandboxSettingsLocalTesting,SharedStorageAPI,FencedFrames 标志启用共享存储空间。

试用代码示例

您可能希望跟踪在不同网站上有多少唯一身份用户看过您的内容。在此示例中,内容 ID 维度编码到汇总键(分桶)中,计数用作可汇总值。摘要报告将包含“大约 391 位用户看过 Content ID 123”之类的信息。

在此示例中: * unique-reach-measurement.js 通过帧加载,并负责加载共享存储 Worklet。 * unique-reach-measurement-worklet.js 是共享存储空间 Worklet,它检查共享存储空间中的标志并通过 Private Aggregation API 发送报告。

reach-measurement.js

async function measureUniqueReach() {
  // Load the Shared Storage worklet
  await window.sharedStorage.worklet.addModule('reach-measurement-worklet.js');

  // Run the reach measurement operation
  await window.sharedStorage.run('reach-measurement', { data: { contentId: '1234' } });
}

measureUniqueReach();

reach-measurement-worklet.js

// Learn more about noise and scaling from the Private Aggregation fundamentals
// documentation on Chrome blog
const SCALE_FACTOR = 65536;

function convertContentIdToBucket(contentId) {
  return BigInt(contentId);
}

class ReachMeasurementOperation {
  async run(data) {
    const { contentId } = data;

    // Read from Shared Storage
    const key = 'has-reported-content';
    const hasReportedContent = (await this.sharedStorage.get(key)) === 'true';

    // Do not report if a report has been sent already
    if (hasReportedContent) {
      return;
    }

    // Generate the aggregation key and the aggregatable value
    const bucket = convertContentIdToBucket(contentId);
    const value = 1 * SCALE_FACTOR;

    // Send an aggregatable report via the Private Aggregation API
    privateAggregation.sendHistogramReport({ bucket, value });

    // Set the report submission status flag
    await this.sharedStorage.set(key, true);
  }
}

// Register the operation
register('reach-measurement', ReachMeasurementOperation);

互动和分享反馈

共享存储空间提案正在积极讨论中,将来可能会发生变化。如果您在试用此 API 时有反馈意见,我们非常期待收到您的宝贵意见。