我正在尝试 Google Funding Choices,但我什至无法按照 Google 的指示加载基本表单。我已经设置了相关站点及其同意详细信息,为广告拦截配置了一条基本消息,粘贴在 FC 控制台中部署说明的代码片段输出中,并将 Google 的 FC 文档中的以下内容放在 FC 标记之前,只是为了尝试加载表单,但这不起作用(我正在使用 url params ?fc=alwaysshow&fctype=ab
):
<script>
// Make sure that the properties exist on the window.
window.googlefc = window.googlefc || {};
window.googlefc.callbackQueue = window.googlefc.callbackQueue || [];
// To guarantee functionality, this must go before the FC tag on the page.
googlefc.controlledMessagingFunction = (message) => {
user.isSubscriber().then(
function (isSubscriber) {
// Do not show the message if a user is a subscriber.
if (isSubscriber) {
message.proceed(false);
} else {
message.proceed(true);
}
}
)};
</script>
提前感谢您的任何指导