gpt4 book ai didi

javascript - Google Funding Choices 不起作用 - googlefc.getConsentStatus() 总是返回 UNKNOWN

转载 作者:行者123 更新时间:2023-12-04 09:01:19 24 4
gpt4 key购买 nike

昨天,为了 GDPR/EU CMP 的目的,我试图从 Quantcast Choice 迁移到 Google Funding Choices。出于某种原因,在提示同意并在消息对话框中单击“同意”后,方法googlefc.getConsentStatus()总是返回 UNKNOWN (0).
经过进一步调查,似乎无论是与同意消息进行何种交互(直接点击同意按钮,拒绝它,选择个别供应商等)getConsentStatus()总是返回 UNKNOWN .
任何人都知道发生了什么?我错过了什么吗?
我正在使用的相关代码:

 window.googlefc.callbackQueue.push({
'CONSENT_DATA_READY':
function () {
let consentStatus = window.googlefc.getConsentStatus();
vm.log("CM_CONSENT_STATUS", consentStatus);
switch (consentStatus) {
case window.googlefc.ConsentStatusEnum.CONSENTED_TO_PERSONALIZED_ADS:
case window.googlefc.ConsentStatusEnum.CONSENT_NOT_REQUIRED:
vm.allow(true);
break;
case window.googlefc.ConsentStatusEnum.CONSENTED_TO_NON_PERSONALIZED_ADS:
vm.reject(true);
break;
case window.googlefc.ConsentStatusEnum.UNKNOWN:
case window.googlefc.ConsentStatusEnum.NO_CONSENT:
break;
}
}
});
window.googlefc.getConsentStatus()总是回来 window.googlefc.ConsentStatusEnum.UNKNOWN

最佳答案

这实际上似乎是预期的行为,因为“如果您使用 IAB TCF v2 框架,window.googlefc.getConsentStatus() 将始终返回 window.googlefc.ConsentStatusEnum.UNKNOWN”。我遇到了同样的问题并在 reddit 上跟踪了答案:https://www.reddit.com/r/adops/comments/ifh6n9/anybody_using_google_funding_choices_for_gdpr_cmp/
虽然我没有找到让 googlefc.getConsentStatus() 函数工作或等效的解决方法,但我让我的 CMP 模态工作(你不必有这个代码来让它工作。唯一你真的必须做的是将 Funding Choices 粘贴到头部顶部,不要使用 (adsbygoogle=window.adsbygoogle||[]).pauseAdRequests=1; 或其他任何方式停止广告请求,因为 Funding Choices 会自行暂停广告 - 然后获得同意后无需重新加载即可启动它们)

关于javascript - Google Funding Choices 不起作用 - googlefc.getConsentStatus() 总是返回 UNKNOWN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63553787/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com