为帮助您遵守美国各州的隐私权法, Google 互动式媒体广告 SDK 允许您使用以下参数 来指明 Google 是否必须启用 受限的数据处理 (RDP)。借助该 SDK,发布商可以利用以下参数在广告请求一级设置 RDP:
如果您使用上述某个参数来指明用户选择不分享数据,Google 会限制对用户标识符和其他数据(例如受众特征定位)的处理。在 RDP 模式下,Google 在向您提供服务时只会投放非个性化广告。
您必须自行决定受限的数据处理如何支持您的合规计划,以及何时启用 RDP。您可以同时使用一个或多个此类可选参数,但 Google 始终会采用限制最严格的处理方式。例如,如果 RDP=1、GPP 字符串或 us_privacy 字符串表明用户选择退出,Google 广告投放功能会启用 RDP。
本指南旨在帮助发布商了解针对每个广告请求启用这些选项所需的操作步骤。
RDP 信号
要使用 Google 的信号通知 Google 应启用 RDP,请将
&rdp=1 附加到广告代码参数,如以下示例所示:
Sub loadStream()
...
request = sdk.CreateStreamRequest()
if m.top.streamData.type = "live"
request.assetKey = m.top.streamData.assetKey
else
request.contentSourceId = m.top.streamData.contentSourceId
request.videoId = m.top.streamData.videoId
end if
request.apiKey = m.top.streamData.apiKey
request.player = m.player
request.adTagParameters = "rdp=1";
requestResult = sdk.requestStream(request)
...
End Sub
IAB GPP 信号
要使用 IAB 的信号通知 Google 应启用 RDP,请使用广告代码参数 gpp={gpp string} 和 gpp_sid={gpp section id}。如需详细了解如何使用 GPP 信号,请参阅
支持 IAB 的全球隐私保护平台。
当满足特定于美国全国、加利福尼亚州、科罗拉多州、康涅狄格州、佛罗里达州和弗吉尼亚州 GPP 字符串的某些条件时,Google 会触发 RDP。
如需详细了解 Global Privacy Protocol 规范,请参阅之前链接的文章中的相关部分。
Sub loadStream()
...
request = sdk.CreateStreamRequest()
if m.top.streamData.type = "live"
request.assetKey = m.top.streamData.assetKey
else
request.contentSourceId = m.top.streamData.contentSourceId
request.videoId = m.top.streamData.videoId
end if
request.apiKey = m.top.streamData.apiKey
request.player = m.player
request.adTagParameters = "gpp=gpp_string&gpp_sid=gpp_section_id";
requestResult = sdk.requestStream(request)
...
End Sub