總覽
這項稽核會檢查標頭出價要求是否延後到 載入 Google 發布商廣告代碼 (GPT) 程式庫。在大多數情況下,這類要求並不依附於 GPT,並且可與載入中的程式庫同時發出,進而加快廣告載入速度。
建議
確保標頭出價要求不會在 googletag.pubadsReady()
或
googletag.cmd.push()
。
Prebid.js 範例
錯誤 |
window.pbjs = pbjs || {}; pbjs.que = pbjs.que || []; window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; googletag.cmd.push(function() { googletag.pubads().disableInitialLoad(); // Incorrect: Making bid requests dependent on GPT loading. pbjs.que.push(function() { pbjs.requestBids({ bidsBackHandler: handleBidResponse }); }); }); |
正確 |
window.pbjs = pbjs || {}; pbjs.que = pbjs.que || []; // Correct: Making bid requests independent of GPT loading. pbjs.que.push(function() { pbjs.requestBids({ bidsBackHandler: handleBidResponse }); }); window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; googletag.cmd.push(function() { googletag.pubads().disableInitialLoad(); }); |
更多資訊
支援的廣告交易平台和供應端平台清單 只要前往 我們的 GitHub 存放區。