此參考資料使用 TypeScript 標記法來說明類型。下表提供簡要說明。
輸入運算式 | |
---|---|
string |
原始字串類型。 |
string[] |
一種陣列類型,其中值只能是字串。 |
number | string |
聯集類型,其中的值可以是數字或字串。 |
Array<number | string> |
陣列類型,其中值為複合 (聯合) 型別。 |
[number, string] |
元組類型,其中值是兩個元素的陣列,必須依序包含數字和字串。 |
Slot |
物件類型,其中值為 googletag.Slot 的例項。 |
() => void |
沒有定義引數和傳回值的函式類型。 |
如要進一步瞭解支援的類型和類型運算式,請參閱 TypeScript 手冊 。
類型註解
在變數、參數名稱、屬性名稱或函式簽名後方加上冒號,表示型別註解。類型註解會說明半形冒號左側的元素可接受或回傳的元素類型。下表列出您可能會在這項參考資料中看到的註解類型範例。
輸入註解 | |
---|---|
param: string |
表示 param 接受或傳回字串值。這個語法適用於變數、參數、屬性和傳回類型。 |
param?: number | string |
表示 param 為選用項目,但在指定時會接受數字或字串。這個語法適用於參數和屬性。
|
...params: Array<() => void> |
表示 params 是可接受函式的
rest 參數
。Rest 參數可接受指定類型的無限值。 |
googletag
命名空間 | |
---|---|
config | 頁面層級設定的主要設定介面。 |
enums | 這是 GPT 用於列舉類型的命名空間。 |
events | 這是 GPT 用於事件的命名空間。 |
secure | 這是 GPT 用於管理安全信號的命名空間。 |
介面 | |
---|---|
Command | 指令陣列會接受函式序列,並依序叫用這些函式。 |
Companion | 隨播廣告服務。 |
Privacy | 隱私權設定的設定物件。 |
Pub | 發布商廣告服務。 |
Response | 代表單一廣告回應的物件。 |
Rewarded | 這個物件代表與獎勵廣告相關的獎勵。 |
Safe | SafeFrame 容器的設定物件。 |
Service | 包含所有服務通用方法的基礎服務類別。 |
Size | 大小對應規格物件的建構工具。 |
Slot | 版位是代表網頁上單一廣告版位的物件。 |
型別別名 | |
---|---|
General | 用於版位的有效尺寸設定,可以是一或多種大小。 |
Multi | 單一有效大小的清單。 |
Named | 廣告版位可用的命名尺寸。 |
Single | 單一有效的版位大小。 |
Single | 代表 [width, height] 的兩個數字陣列。 |
Size | 可視區域大小與廣告尺寸的對應項目。 |
Size | 大小對應項目清單。 |
變數 | |
---|---|
api | 旗標,指出 GPT API 已載入並可供呼叫。 |
cmd | GPT 相關呼叫非同步執行作業的全域指令佇列參照。 |
pubads | 此標記表示 PubAdsService 已啟用、載入且可正常運作。 |
secure | 安全信號供應商陣列的參照。 |
函式 | |
---|---|
companion | 傳回 CompanionAdsService 的參照。 |
define | 使用指定廣告單元路徑建構非頁面內廣告版位。 |
define | 使用指定的廣告單元路徑和大小建構廣告版位,並將其與網頁上包含廣告的 div 元素 ID 建立關聯。 |
destroy | 摧毀指定的空白,從 GPT 中移除所有相關物件和參照。 |
disable | 停用 Google 發布商控制台。 |
display | 指示版位服務轉譯版位。 |
enable | 啟用網頁廣告版位已定義的所有 GPT 服務。 |
get | 傳回最新版本的 GPT。 |
open | 開啟 Google 發布商控制台。 |
pubads | 傳回對 PubAdsService 的參照。 |
set | 從此時起,為 PubAdsService 建立的所有廣告容器 iframe 設定標題。 |
set | 設定網頁的一般設定選項。 |
size | 建立新的 SizeMappingBuilder。 |
型別別名
GeneralSize
GeneralSize: SingleSize | MultiSize
可為單一或多個尺寸的廣告版位設定有效尺寸。
MultiSize
MultiSize: SingleSize[]
單一有效大小的清單。
NamedSize
- fluid:廣告容器會占用父項 div 的 100% 寬度,然後調整高度,以便容納廣告素材內容。與網頁上一般區塊元素的行為類似。用於原生廣告 (請參閱相關文章)。請注意,
fluid
和['fluid']
都是可接受的表單,將版位大小宣告為自動調整大小。
NamedSize: "fluid" | ["fluid"]
廣告版位可用的命名尺寸。在大多數情況下,大小是固定大小的矩形,但在某些情況下,我們需要其他類型的大小規格。只有以下項目是有效的已命名大小:
SingleSize
SingleSize: SingleSizeArray | NamedSize
單一有效的版位大小。
SingleSizeArray
SingleSizeArray: [number, number]
代表 [width, height] 的兩個數字陣列。
SizeMapping
SizeMapping: [SingleSizeArray, GeneralSize]
可視區域大小與廣告尺寸的對應關係。回應式廣告專用欄。
SizeMappingArray
SizeMappingArray: SizeMapping[]
大小對應項目清單。
變數
Const
apiReady
apiReady: boolean | undefined
標記,指出 GPT API 已載入並可供呼叫。在 API 準備就緒之前,這個屬性會改為 undefined
。
請注意,處理非同步的建議方法是使用 googletag.cmd 將回呼排入佇列,以待 GPT 就緒。這些回呼不必檢查 googletag.apiReady,因為在 API 設定完成後,這些回呼一定會執行。
Const
cmd
- 範例
JavaScript
googletag.cmd.push(() => { googletag.defineSlot("/1234567/sports", [160, 600]).addService(googletag.pubads()); });
JavaScript (舊版)
googletag.cmd.push(function () { googletag.defineSlot("/1234567/sports", [160, 600]).addService(googletag.pubads()); });
TypeScript
googletag.cmd.push(() => { googletag.defineSlot("/1234567/sports", [160, 600])!.addService(googletag.pubads()); });
cmd: ((this: typeof globalThis) => void)[] | CommandArray
用於執行 GPT 相關呼叫非同步執行作業的全域指令佇列。googletag.cmd
變數是由網頁上的 GPT 代碼語法初始化為空白的 JavaScript 陣列,而 cmd.push
則是標準的 Array.push
方法,可在陣列結尾新增元素。載入 GPT JavaScript 時,系統會檢查陣列,並依序執行所有函式。接著,指令碼會將 cmd
替換為 CommandArray 物件,該物件的推送方法定義為執行傳遞至該物件的函式引數。這個機制可讓 GPT 以非同步方式擷取 JavaScript,同時讓瀏覽器繼續轉譯網頁,進而縮短延遲時間。
Const
pubadsReady
pubadsReady: boolean | undefined
此標記可指出 PubAdsService 已啟用、載入且可正常運作。在呼叫 enableServices 並載入及初始化 PubAdsService 之前,這個屬性會是 undefined
。
secureSignalProviders
- 範例
JavaScript
window.googletag = window.googletag || { cmd: [] }; googletag.secureSignalProviders = googletag.secureSignalProviders || []; googletag.secureSignalProviders.push({ id: "collector123", collectorFunction: () => { return Promise.resolve("signal"); }, });
JavaScript (舊版)
window.googletag = window.googletag || { cmd: [] }; googletag.secureSignalProviders = googletag.secureSignalProviders || []; googletag.secureSignalProviders.push({ id: "collector123", collectorFunction: function () { return Promise.resolve("signal"); }, });
TypeScript
window.googletag = window.googletag || { cmd: [] }; googletag.secureSignalProviders = googletag.secureSignalProviders || []; googletag.secureSignalProviders.push({ id: "collector123", collectorFunction: () => { return Promise.resolve("signal"); }, });
- 另請參閱
secureSignalProviders: SecureSignalProvider[] | SecureSignalProvidersArray | undefined
安全信號供應器陣列的參照。
安全信號供應器陣列會接受信號產生函式的序列,並依序叫用這些函式。這個陣列可取代標準陣列,用於將信號產生函式排入佇列,以便在 GPT 載入時叫用。
函式
companionAds
companionAds(): CompanionAdsService
傳回 CompanionAdsService 的參照。
傳回 | |
---|---|
CompanionAdsService | 隨播廣告服務。 |
defineOutOfPageSlot
- 範例
JavaScript
// Define a custom out-of-page ad slot. googletag.defineOutOfPageSlot("/1234567/sports", "div-1"); // Define a GPT managed web interstitial ad slot. googletag.defineOutOfPageSlot("/1234567/sports", googletag.enums.OutOfPageFormat.INTERSTITIAL);
JavaScript (舊版)
// Define a custom out-of-page ad slot. googletag.defineOutOfPageSlot("/1234567/sports", "div-1"); // Define a GPT managed web interstitial ad slot. googletag.defineOutOfPageSlot("/1234567/sports", googletag.enums.OutOfPageFormat.INTERSTITIAL);
TypeScript
// Define a custom out-of-page ad slot. googletag.defineOutOfPageSlot("/1234567/sports", "div-1"); // Define a GPT managed web interstitial ad slot. googletag.defineOutOfPageSlot("/1234567/sports", googletag.enums.OutOfPageFormat.INTERSTITIAL);
defineOutOfPageSlot(adUnitPath: string, div?: string | OutOfPageFormat): Slot | null
使用指定廣告單元路徑建構非頁內廣告版位。
如果是自訂非頁內廣告,div
是要包含廣告的 div 元素 ID。詳情請參閱非頁內廣告素材一文。
對於 GPT 管理的非頁內廣告,div
是 OutOfPageFormat 支援。
參數 | |
---|---|
adUnitPath: string | 包含聯播網代碼和廣告單元程式碼的完整廣告單元路徑。 |
| 要包含這個廣告單元或 OutOfPageFormat 的 div 編號。 |
傳回 | |
---|---|
Slot | null | 新建立的運算單元;如果無法建立時段,則為 null 。 |
defineSlot
- 範例
JavaScript
googletag.defineSlot("/1234567/sports", [728, 90], "div-1");
JavaScript (舊版)
googletag.defineSlot("/1234567/sports", [728, 90], "div-1");
TypeScript
googletag.defineSlot("/1234567/sports", [728, 90], "div-1");
defineSlot(adUnitPath: string, size: GeneralSize, div?: string): Slot | null
使用指定的廣告單元路徑和大小建構廣告版位,並將其與網頁上包含廣告的 div 元素 ID 建立關聯。
參數 | |
---|---|
adUnitPath: string | 包含聯播網代碼和單元代碼的完整廣告單元路徑。 |
size: GeneralSize | 新增的版位寬度和高度。如果未提供回應式大小對應,或可視區域的大小小於對應中提供的最小大小,廣告請求就會使用這個大小。 |
| 要包含這個廣告單元的 div 編號。 |
傳回 | |
---|---|
Slot | null | 新建立的運算單元,如果無法建立運算單元,則為 null 。 |
destroySlots
- 範例
JavaScript
// The calls to construct an ad and display contents. const slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1"); googletag.display("div-1"); const slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2"); googletag.display("div-2"); // This call to destroy only slot1. googletag.destroySlots([slot1]); // This call to destroy both slot1 and slot2. googletag.destroySlots([slot1, slot2]); // This call to destroy all slots. googletag.destroySlots();
JavaScript (舊版)
// The calls to construct an ad and display contents. var slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1"); googletag.display("div-1"); var slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2"); googletag.display("div-2"); // This call to destroy only slot1. googletag.destroySlots([slot1]); // This call to destroy both slot1 and slot2. googletag.destroySlots([slot1, slot2]); // This call to destroy all slots. googletag.destroySlots();
TypeScript
// The calls to construct an ad and display contents. const slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1")!; googletag.display("div-1"); const slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2")!; googletag.display("div-2"); // This call to destroy only slot1. googletag.destroySlots([slot1]); // This call to destroy both slot1 and slot2. googletag.destroySlots([slot1, slot2]); // This call to destroy all slots. googletag.destroySlots();
destroySlots(slots?: Slot[]): boolean
刪除指定的版位,從 GPT 移除所有相關物件和參照。這個 API 不支援回傳式曝光版位和隨播廣告版位。
若在版位上呼叫這個 API,系統會清除廣告,並從 GPT 維護的內部狀態移除版位物件。在空白物件上呼叫任何其他函式都會導致行為不明確。請注意,如果發布商頁面維護了與該版位相關的參照,瀏覽器可能仍會釋出與該版位相關的記憶體。呼叫這個 API 後,與該版位相關聯的 div 就會可供重複使用。
具體來說,移除版位會從 GPT 的長效網頁瀏覽中移除廣告,因此日後的請求不會受到涉及這則廣告的路障型廣告或競爭排除條件的影響。如果未在從網頁中移除 div 之前呼叫此函式,就會導致不明確的行為。
參數 | |
---|---|
| 要摧毀的格子陣列。陣列是選用項目;如未指定任何運算單元,系統會刪除該陣列。 |
傳回 | |
---|---|
boolean | 如果已銷毀時段,則為 true ;否則為 false 。 |
disablePublisherConsole
螢幕
display(divOrSlot: string | Element | Slot): void
指示運算單元服務轉譯運算單元。每個廣告版位在每個網頁上只能顯示一次。所有版位都必須定義完畢,並與某個服務建立關聯,才能顯示在網頁上。元素必須先出現在 DOM 中,才能發出顯示呼叫。通常會將這個方法放在方法呼叫中所命名的 div 元素內的程式碼區塊中。
如果使用單一請求架構 (SRA),系統會在呼叫這個方法時,一次擷取所有未擷取的廣告版位。如要強制不顯示廣告插槽,必須移除整個 div。
參數 | |
---|---|
divOrSlot: string | Element | Slot | 包含廣告版位或 div 元素的 div 元素 ID,或是版位物件。如果提供 div 元素,則其「id」屬性必須與傳入 defineSlot 的 ID 相符。 |
enableServices
getVersion
openConsole
- 範例
JavaScript
// Calling with div ID. googletag.openConsole("div-1"); // Calling without div ID. googletag.openConsole();
JavaScript (舊版)
// Calling with div ID. googletag.openConsole("div-1"); // Calling without div ID. googletag.openConsole();
TypeScript
// Calling with div ID. googletag.openConsole("div-1"); // Calling without div ID. googletag.openConsole();
- 另請參閱
openConsole(div?: string): void
開啟 Google 發布商控制台。
參數 | |
---|---|
| 廣告版位 div ID。這是選用值。如有提供,發布商控制台會嘗試開啟並顯示指定廣告版位的詳細資料。 |
pubads
pubads(): PubAdsService
傳回 PubAdsService 的參照。
傳回 | |
---|---|
PubAdsService | 發布商廣告服務。 |
setAdIframeTitle
- 範例
JavaScript
googletag.setAdIframeTitle("title");
JavaScript (舊版)
googletag.setAdIframeTitle("title");
TypeScript
googletag.setAdIframeTitle("title");
setAdIframeTitle(title: string): void
從此時起,為 PubAdsService 建立的所有廣告容器 iframe 設定標題。
參數 | |
---|---|
title: string | 所有廣告容器 iframe 的新標題。 |
setConfig
setConfig(config: PageSettingsConfig): void
設定網頁的一般設定選項。
參數 | |
---|---|
config: PageSettingsConfig |
sizeMapping
- 另請參閱
sizeMapping(): SizeMappingBuilder
建立新的 SizeMappingBuilder。
傳回 | |
---|---|
SizeMappingBuilder | 新的建構工具。 |
googletag.CommandArray
方法 | |
---|---|
push | 依序執行引數中指定的函式序列。 |
方法
push
- 範例
JavaScript
googletag.cmd.push(() => { googletag.defineSlot("/1234567/sports", [160, 600]).addService(googletag.pubads()); });
JavaScript (舊版)
googletag.cmd.push(function () { googletag.defineSlot("/1234567/sports", [160, 600]).addService(googletag.pubads()); });
TypeScript
googletag.cmd.push(() => { googletag.defineSlot("/1234567/sports", [160, 600])!.addService(googletag.pubads()); });
push(...f: ((this: typeof globalThis) => void)[]): number
依序執行引數中指定的函式序列。
參數 | |
---|---|
| 要執行的 JavaScript 函式。執行階段繫結一律為 globalThis 。建議您傳遞箭頭函式,保留包函字詞庫內容的 this 值。 |
傳回 | |
---|---|
number | 目前已處理的指令數量。這與 Array.push 的傳回值 (陣列的目前長度) 相容。 |
googletag.CompanionAdsService
延長方法 | |
---|---|
add | 註冊監聽器,讓您在網頁上發生特定 GPT 事件時,設定及呼叫 JavaScript 函式。 從 |
get | 取得與這項服務相關聯的運算單元清單。 從 |
remove | 移除先前註冊的事件監聽器。 沿用自「 |
set | 設定是否要自動填入尚未填入廣告的隨播廣告版位。 |
- 另請參閱
方法
setRefreshUnfilledSlots
- 範例
JavaScript
googletag.companionAds().setRefreshUnfilledSlots(true);
JavaScript (舊版)
googletag.companionAds().setRefreshUnfilledSlots(true);
TypeScript
googletag.companionAds().setRefreshUnfilledSlots(true);
setRefreshUnfilledSlots(value: boolean): void
設定是否要自動補上尚未填入廣告的隨播廣告版位。
這個方法可以在網頁生命週期內多次呼叫,以開啟或關閉補上廣告的功能。只有透過 PubAdsService 註冊的版位才會補上廣告。由於政策限制,這個方法無法在 Ad Exchange 影片放送時填入空白隨播廣告插播單元。
參數 | |
---|---|
value: boolean | true 可自動填補未填入的空格,false 則可保持不變。 |
googletag.PrivacySettingsConfig
屬性 | |
---|---|
child | 指出是否應將該頁面視為兒童導向內容。 |
limited | 配合發布商的法規要求,以便在受限制的廣告模式下放送。 |
non | 啟用放送模式,以便在非個人化廣告模式下放送廣告,協助發布商遵守法規。 |
restrict | 啟用放送功能,以受限的處理模式執行,協助發布商遵守法規。 |
traffic | 指出請求是否代表購買流量或自然流量。 |
under | 指出是否要將廣告請求標為未滿規定年齡的使用者。 |
- 另請參閱
屬性
Optional
childDirectedTreatment
childDirectedTreatment?: null | boolean
指出是否應將網頁視為兒童導向內容。設為 null
即可清除設定。
Optional
limitedAds
- 使用 IAB 資訊公開和同意聲明架構第 2.0 版的同意聲明管理平台的信號來自動運作。
- 手動將這個欄位的值設為
true
。 - 範例
JavaScript
// Manually enable limited ads serving. // GPT must be loaded from the limited ads URL to configure this setting. googletag.pubads().setPrivacySettings({ limitedAds: true, });
JavaScript (舊版)
// Manually enable limited ads serving. // GPT must be loaded from the limited ads URL to configure this setting. googletag.pubads().setPrivacySettings({ limitedAds: true, });
TypeScript
// Manually enable limited ads serving. // GPT must be loaded from the limited ads URL to configure this setting. googletag.pubads().setPrivacySettings({ limitedAds: true, });
- 另請參閱
limitedAds?: boolean
啟用放送模式,以受限制的廣告模式放送廣告,協助發布商符合法規規定。
您可以透過兩種方式指示 GPT 請求受限制的廣告:
請注意,使用 CMP 時,不需要手動啟用受限制的廣告。
Optional
nonPersonalizedAds
nonPersonalizedAds?: boolean
讓廣告在非個人化廣告模式下放送,以符合發布商的法規遵循需求。
Optional
restrictDataProcessing
restrictDataProcessing?: boolean
讓廣告在受限的處理模式下放送,以滿足發布商的法規遵循需求。
Optional
trafficSource
- 範例
JavaScript
// Indicate requests represent organic traffic. googletag.pubads().setPrivacySettings({ trafficSource: googletag.enums.TrafficSource.ORGANIC, }); // Indicate requests represent purchased traffic. googletag.pubads().setPrivacySettings({ trafficSource: googletag.enums.TrafficSource.PURCHASED, });
JavaScript (舊版)
// Indicate requests represent organic traffic. googletag.pubads().setPrivacySettings({ trafficSource: googletag.enums.TrafficSource.ORGANIC, }); // Indicate requests represent purchased traffic. googletag.pubads().setPrivacySettings({ trafficSource: googletag.enums.TrafficSource.PURCHASED, });
TypeScript
// Indicate requests represent organic traffic. googletag.pubads().setPrivacySettings({ trafficSource: googletag.enums.TrafficSource.ORGANIC, }); // Indicate requests represent purchased traffic. googletag.pubads().setPrivacySettings({ trafficSource: googletag.enums.TrafficSource.PURCHASED, });
trafficSource?: TrafficSource
指出請求代表的是購買或自然流量。這個值會填入 Ad Manager 報表中的「流量來源」維度。如未設定,則報表中的流量來源會預設為 undefined
。
Optional
underAgeOfConsent
underAgeOfConsent?: null | boolean
指出是否要將廣告請求標記為來自未滿法定同意年齡的使用者。設為 null
即可清除設定。
googletag.PubAdsService
擴充方法 | |
---|---|
add | 註冊事件監聽器,讓您在網頁上發生特定 GPT 事件時,設定及呼叫 JavaScript 函式。 從 |
clear | 從指定的廣告位移除廣告,並用空白內容取代。 |
clear | 清除所有網頁層級廣告類別排除標籤。 |
clear | 清除特定鍵或所有鍵的自訂指定目標參數。 |
collapse | 啟用廣告版位 div 收合功能,讓廣告版位在沒有廣告內容可顯示時,不會佔用網頁上的任何空間。 |
disable | 在網頁載入時停用廣告請求,但允許透過 PubAdsService.refresh 呼叫要求廣告。 |
display | 使用指定的廣告單元路徑和大小,建構並顯示廣告版位。 |
enable | 啟用 GPT 中的延遲載入功能,並依據設定物件定義。 |
enable | 啟用單一請求模式,以便同時擷取多則廣告。 |
enable | 向 GPT 傳達信號,表示網頁上會顯示影片廣告。 |
get | 傳回與指定鍵相關聯的 AdSense 屬性值。 |
get | 傳回已在這個服務上設定的屬性鍵。 |
get | 取得與這項服務相關的空檔清單。 沿用自「 |
get | 傳回已設定的特定自訂服務層級指定參數。 |
get | 傳回已設定的自訂服務層級指定鍵清單。 |
is | 傳回先前的 PubAdsService.disableInitialLoad 呼叫是否成功停用廣告的初始請求。 |
refresh | 擷取並顯示網頁上特定或所有版位的全新廣告。 |
remove | 移除先前註冊的事件監聽器。 從 |
set | 設定 AdSense 屬性值,這些屬性值會套用到「發布商廣告」服務下的所有廣告版位。 |
set | 針對特定標籤名稱設定網頁層級廣告類別排除條件。 |
set | 啟用或停用水平置中廣告。 |
set | 設定是否應強制使用 SafeFrame 容器來顯示網頁上的所有廣告。 |
set | 傳送網站的位置資訊,讓您將委刊項指定到特定地理區域。 |
set | 允許使用設定物件,從單一 API 設定所有隱私權設定。 |
set | 為發布商提供的 ID 設定值。 |
set | 設定 SafeFrame 設定的網頁層級偏好設定。 |
set | 為特定鍵設定自訂指定目標參數,適用於所有發布商廣告服務廣告版位。 |
set | 設定要與廣告請求一併傳送的影片內容資訊,以便指定目標和排除內容。 |
update | 變更隨廣告請求傳送的關聯器,有效地開始新的網頁瀏覽。 |
方法
clear
- 範例
JavaScript
const slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1"); googletag.display("div-1"); const slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2"); googletag.display("div-2"); // This call to clear only slot1. googletag.pubads().clear([slot1]); // This call to clear both slot1 and slot2. googletag.pubads().clear([slot1, slot2]); // This call to clear all slots. googletag.pubads().clear();
JavaScript (舊版)
var slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1"); googletag.display("div-1"); var slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2"); googletag.display("div-2"); // This call to clear only slot1. googletag.pubads().clear([slot1]); // This call to clear both slot1 and slot2. googletag.pubads().clear([slot1, slot2]); // This call to clear all slots. googletag.pubads().clear();
TypeScript
const slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1")!; googletag.display("div-1"); const slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2")!; googletag.display("div-2"); // This call to clear only slot1. googletag.pubads().clear([slot1]); // This call to clear both slot1 and slot2. googletag.pubads().clear([slot1, slot2]); // This call to clear all slots. googletag.pubads().clear();
clear(slots?: Slot[]): boolean
從指定的廣告位移除廣告,並用空白內容取代。系統會將這些版位標示為未擷取。
具體來說,清除版位會從 GPT 的長效網頁瀏覽中移除廣告,因此日後的請求不會受到涉及這則廣告的路障或競爭排除條件影響。
參數 | |
---|---|
| 要清除的運算單元陣列。陣列為選用項目,如果未指定,則所有時段都會清除。 |
傳回 | |
---|---|
boolean | 如果已清除插槽,就會傳回 true ,否則傳回 false 。 |
clearCategoryExclusions
- 範例
JavaScript
// Set category exclusion to exclude ads with 'AirlineAd' labels. googletag.pubads().setCategoryExclusion("AirlineAd"); // Make ad requests. No ad with 'AirlineAd' label will be returned. // Clear category exclusions so all ads can be returned. googletag.pubads().clearCategoryExclusions(); // Make ad requests. Any ad can be returned.
JavaScript (舊版)
// Set category exclusion to exclude ads with 'AirlineAd' labels. googletag.pubads().setCategoryExclusion("AirlineAd"); // Make ad requests. No ad with 'AirlineAd' label will be returned. // Clear category exclusions so all ads can be returned. googletag.pubads().clearCategoryExclusions(); // Make ad requests. Any ad can be returned.
TypeScript
// Set category exclusion to exclude ads with 'AirlineAd' labels. googletag.pubads().setCategoryExclusion("AirlineAd"); // Make ad requests. No ad with 'AirlineAd' label will be returned. // Clear category exclusions so all ads can be returned. googletag.pubads().clearCategoryExclusions(); // Make ad requests. Any ad can be returned.
- 另請參閱
clearCategoryExclusions(): PubAdsService
清除所有網頁層級廣告類別排除標籤。如要重新整理時段,這個方法就很實用。
傳回 | |
---|---|
PubAdsService | 呼叫該方法的服務物件。 |
clearTargeting
- 範例
JavaScript
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().setTargeting("colors", "blue"); googletag.pubads().setTargeting("fruits", "apple"); googletag.pubads().clearTargeting("interests"); // Targeting 'colors' and 'fruits' are still present, while 'interests' // was cleared. googletag.pubads().clearTargeting(); // All targeting has been cleared.
JavaScript (舊版)
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().setTargeting("colors", "blue"); googletag.pubads().setTargeting("fruits", "apple"); googletag.pubads().clearTargeting("interests"); // Targeting 'colors' and 'fruits' are still present, while 'interests' // was cleared. googletag.pubads().clearTargeting(); // All targeting has been cleared.
TypeScript
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().setTargeting("colors", "blue"); googletag.pubads().setTargeting("fruits", "apple"); googletag.pubads().clearTargeting("interests"); // Targeting 'colors' and 'fruits' are still present, while 'interests' // was cleared. googletag.pubads().clearTargeting(); // All targeting has been cleared.
- 另請參閱
clearTargeting(key?: string): PubAdsService
清除特定鍵或所有鍵的自訂指定目標參數。
參數 | |
---|---|
| 指定目標參數鍵。這個鍵為選用項目,如果未指定,系統會清除所有指定目標參數。 |
傳回 | |
---|---|
PubAdsService | 呼叫方法的服務物件。 |
collapseEmptyDivs
disableInitialLoad
- 另請參閱
disableInitialLoad(): void
在網頁載入時停用廣告請求,但允許透過 PubAdsService.refresh 呼叫要求廣告。您必須先設定這項資訊,才能啟用服務。必須使用非同步模式,否則無法使用 refresh
要求廣告。
螢幕
- 範例
JavaScript
googletag.pubads().display("/1234567/sports", [728, 90], "div-1");
JavaScript (舊版)
googletag.pubads().display("/1234567/sports", [728, 90], "div-1");
TypeScript
googletag.pubads().display("/1234567/sports", [728, 90], "div-1");
- 另請參閱
display(adUnitPath: string, size: GeneralSize, div?: string | Element, clickUrl?: string): void
根據指定廣告單元路徑和大小建構並顯示廣告版位。這個方法不適用於單一請求模式。
注意:呼叫這個方法時,系統會建立廣告位址和網頁狀態的快照,以確保傳送廣告要求和算繪回應時的一致性。在這個方法呼叫後,對單元格或網頁狀態所做的任何變更 (包括指定目標、隱私權設定、強制使用 SafeFrame 等) 只會套用至後續的 display()
或 refresh()
要求。
參數 | |
---|---|
adUnitPath: string | 要算繪的版位廣告單元路徑。 |
size: GeneralSize | 版位的寬度和高度。 |
| 包含單元格的 div 的 ID,或 div 元素本身。 |
| 要用於這個版位的點擊網址。 |
enableLazyLoad
- 範例
JavaScript
googletag.pubads().enableLazyLoad({ // Fetch slots within 5 viewports. fetchMarginPercent: 500, // Render slots within 2 viewports. renderMarginPercent: 200, // Double the above values on mobile. mobileScaling: 2.0, });
JavaScript (舊版)
googletag.pubads().enableLazyLoad({ // Fetch slots within 5 viewports. fetchMarginPercent: 500, // Render slots within 2 viewports. renderMarginPercent: 200, // Double the above values on mobile. mobileScaling: 2.0, });
TypeScript
googletag.pubads().enableLazyLoad({ // Fetch slots within 5 viewports. fetchMarginPercent: 500, // Render slots within 2 viewports. renderMarginPercent: 200, // Double the above values on mobile. mobileScaling: 2.0, });
- 另請參閱
fetchMarginPercent
廣告版位必須與目前可視區域的距離,以可視區域大小的百分比表示。值為 0 表示「當版位進入可視區域時」,值為 100 表示「廣告距離可視區域 1 個單位時」,以此類推。renderMarginPercent
廣告版位與目前可視區域之間的最短距離,我們才會顯示廣告。這樣做可以預先擷取廣告,但目前仍在等待顯示及下載其他子資源。這個值的運作方式與fetchMarginPercent
相同,都是以檢視區的百分比表示。mobileScaling
套用至行動裝置邊界上的乘數。這樣一來,行動版和電腦版的邊框寬度就能有所不同。舉例來說,如果值為 2.0,則會在行動裝置上將所有邊距乘以 2,增加取用和算繪前可用的最小間距。
enableLazyLoad(config?: {
fetchMarginPercent?: number;
mobileScaling?: number;
renderMarginPercent?: number;
}): void
啟用 GPT 中的延遲載入功能,如設定物件所定義。如需更詳細的範例,請參閱 延遲載入範例。
注意:只有當所有時段都位於擷取邊界之外時,SRA 中的延遲擷取功能才會運作。
參數 | |
---|---|
| 設定物件可自訂延遲行為。系統會使用 Google 的預設設定,並隨著時間調整。如要停用特定設定 (例如擷取邊界),請將值設為 -1 。 |
enableSingleRequest
enableVideoAds
enableVideoAds(): void
向 GPT 傳送信號,表示網頁上會顯示影片廣告。這樣一來,多媒體廣告和影片廣告就會啟用競爭排除限制。如果已知影片內容,請呼叫 PubAdsService.setVideoContent,以便在多媒體廣告中使用內容排除條件。
get
- 範例
JavaScript
googletag.pubads().set("adsense_background_color", "#FFFFFF"); googletag.pubads().get("adsense_background_color"); // Returns '#FFFFFF'.
JavaScript (舊版)
googletag.pubads().set("adsense_background_color", "#FFFFFF"); googletag.pubads().get("adsense_background_color"); // Returns '#FFFFFF'.
TypeScript
googletag.pubads().set("adsense_background_color", "#FFFFFF"); googletag.pubads().get("adsense_background_color"); // Returns '#FFFFFF'.
- 另請參閱
get(key: string): null | string
傳回與指定鍵相關聯的 AdSense 屬性值。
參數 | |
---|---|
key: string | 要搜尋的屬性名稱。 |
傳回 | |
---|---|
null | string | 屬性鍵的目前值,如果沒有鍵,則為 null 。 |
getAttributeKeys
- 範例
JavaScript
googletag.pubads().set("adsense_background_color", "#FFFFFF"); googletag.pubads().set("adsense_border_color", "#AABBCC"); googletag.pubads().getAttributeKeys(); // Returns ['adsense_background_color', 'adsense_border_color'].
JavaScript (舊版)
googletag.pubads().set("adsense_background_color", "#FFFFFF"); googletag.pubads().set("adsense_border_color", "#AABBCC"); googletag.pubads().getAttributeKeys(); // Returns ['adsense_background_color', 'adsense_border_color'].
TypeScript
googletag.pubads().set("adsense_background_color", "#FFFFFF"); googletag.pubads().set("adsense_border_color", "#AABBCC"); googletag.pubads().getAttributeKeys(); // Returns ['adsense_background_color', 'adsense_border_color'].
getAttributeKeys(): string[]
傳回已在這個服務上設定的屬性鍵。
傳回 | |
---|---|
string[] | 在這個服務上設定的屬性鍵陣列。排序未定義。 |
getTargeting
- 範例
JavaScript
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().getTargeting("interests"); // Returns ['sports']. googletag.pubads().getTargeting("age"); // Returns [] (empty array).
JavaScript (舊版)
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().getTargeting("interests"); // Returns ['sports']. googletag.pubads().getTargeting("age"); // Returns [] (empty array).
TypeScript
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().getTargeting("interests"); // Returns ['sports']. googletag.pubads().getTargeting("age"); // Returns [] (empty array).
getTargeting(key: string): string[]
傳回已設定的特定自訂服務層級指定參數。
參數 | |
---|---|
key: string | 要尋找的指定鍵。 |
傳回 | |
---|---|
string[] | 與此鍵相關聯的值,如果沒有此鍵,則傳回空陣列。 |
getTargetingKeys
- 範例
JavaScript
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().setTargeting("colors", "blue"); googletag.pubads().getTargetingKeys(); // Returns ['interests', 'colors'].
JavaScript (舊版)
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().setTargeting("colors", "blue"); googletag.pubads().getTargetingKeys(); // Returns ['interests', 'colors'].
TypeScript
googletag.pubads().setTargeting("interests", "sports"); googletag.pubads().setTargeting("colors", "blue"); googletag.pubads().getTargetingKeys(); // Returns ['interests', 'colors'].
getTargetingKeys(): string[]
傳回已設定的所有自訂服務層級指定目標鍵清單。
傳回 | |
---|---|
string[] | 指定鍵的陣列。排序未定義。 |
isInitialLoadDisabled
isInitialLoadDisabled(): boolean
傳回先前 PubAdsService.disableInitialLoad 呼叫是否已成功停用廣告的初始要求。
傳回 | |
---|---|
boolean | 如果先前對 PubAdsService.disableInitialLoad 的呼叫成功,則會傳回 true ,否則傳回 false 。 |
重新整理
- 範例
JavaScript
const slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1"); googletag.display("div-1"); const slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2"); googletag.display("div-2"); // This call to refresh fetches a new ad for slot1 only. googletag.pubads().refresh([slot1]); // This call to refresh fetches a new ad for both slot1 and slot2. googletag.pubads().refresh([slot1, slot2]); // This call to refresh fetches a new ad for each slot. googletag.pubads().refresh(); // This call to refresh fetches a new ad for slot1, without changing // the correlator. googletag.pubads().refresh([slot1], { changeCorrelator: false }); // This call to refresh fetches a new ad for each slot, without // changing the correlator. googletag.pubads().refresh(null, { changeCorrelator: false });
JavaScript (舊版)
var slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1"); googletag.display("div-1"); var slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2"); googletag.display("div-2"); // This call to refresh fetches a new ad for slot1 only. googletag.pubads().refresh([slot1]); // This call to refresh fetches a new ad for both slot1 and slot2. googletag.pubads().refresh([slot1, slot2]); // This call to refresh fetches a new ad for each slot. googletag.pubads().refresh(); // This call to refresh fetches a new ad for slot1, without changing // the correlator. googletag.pubads().refresh([slot1], { changeCorrelator: false }); // This call to refresh fetches a new ad for each slot, without // changing the correlator. googletag.pubads().refresh(null, { changeCorrelator: false });
TypeScript
const slot1 = googletag.defineSlot("/1234567/sports", [728, 90], "div-1")!; googletag.display("div-1"); const slot2 = googletag.defineSlot("/1234567/news", [160, 600], "div-2")!; googletag.display("div-2"); // This call to refresh fetches a new ad for slot1 only. googletag.pubads().refresh([slot1]); // This call to refresh fetches a new ad for both slot1 and slot2. googletag.pubads().refresh([slot1, slot2]); // This call to refresh fetches a new ad for each slot. googletag.pubads().refresh(); // This call to refresh fetches a new ad for slot1, without changing // the correlator. googletag.pubads().refresh([slot1], { changeCorrelator: false }); // This call to refresh fetches a new ad for each slot, without // changing the correlator. googletag.pubads().refresh(null, { changeCorrelator: false });
- 另請參閱
changeCorrelator
指定是否要為擷取廣告產生新的關聯器。我們的廣告伺服器會暫時保留這個 Correlator 值 (目前為 30 秒,但可能會變更),因此如果系統在短時間內收到具有相同 Correlator 的多個請求,就會將其視為單一網頁瀏覽事件。根據預設,系統會為每次重新整理作業產生新的關聯器。
注意:這個選項不會影響 GPT 的長效網頁瀏覽,後者會自動反映網頁上目前的廣告,且沒有到期時間。
refresh(slots?: null | Slot[], options?: {
changeCorrelator: boolean;
}): void
擷取並顯示網頁上特定或所有版位的新廣告。僅適用於非同步轉譯模式。
為確保在所有瀏覽器中正常運作,請先呼叫 display
廣告位址,再呼叫 refresh
。如果省略呼叫 display
,重新整理作業可能會發生非預期的行為。如有需要,您可以使用 PubAdsService.disableInitialLoad 方法,停止 display
擷取廣告。
重新整理版位後,系統會從 GPT 的長效網頁瀏覽中移除舊廣告,因此日後的請求不會受到該廣告的路障型廣告或競爭排除條件的影響。
參數 | |
---|---|
| 要重新整理的空格。陣列為選用項目,如未指定,則所有時段都會重新整理。 |
| 與此重新整理呼叫相關聯的設定選項。 |
set
- 範例
JavaScript
googletag.pubads().set("adsense_background_color", "#FFFFFF");
JavaScript (舊版)
googletag.pubads().set("adsense_background_color", "#FFFFFF");
TypeScript
googletag.pubads().set("adsense_background_color", "#FFFFFF");
- 另請參閱
set(key: string, value: string): PubAdsService
為適用於發布商廣告服務下所有廣告版位的 AdSense 屬性設定值。
如果針對同一個鍵多次呼叫此方法,系統會覆寫先前為該鍵設定的值。必須先設定所有值,才能呼叫 display
或 refresh
。
參數 | |
---|---|
key: string | 屬性名稱。 |
value: string | 屬性值。 |
傳回 | |
---|---|
PubAdsService | 呼叫方法的服務物件。 |
setCategoryExclusion
- 範例
JavaScript
// Label = AirlineAd. googletag.pubads().setCategoryExclusion("AirlineAd");
JavaScript (舊版)
// Label = AirlineAd. googletag.pubads().setCategoryExclusion("AirlineAd");
TypeScript
// Label = AirlineAd. googletag.pubads().setCategoryExclusion("AirlineAd");
- 另請參閱
setCategoryExclusion(categoryExclusion: string): PubAdsService
為指定的標籤名稱設定網頁層級廣告類別排除條件。
參數 | |
---|---|
categoryExclusion: string | 要新增的廣告類別排除標籤。 |
傳回 | |
---|---|
PubAdsService | 呼叫方法的服務物件。 |
setCentering
- 範例
JavaScript
// Make ads centered. googletag.pubads().setCentering(true);
JavaScript (舊版)
// Make ads centered. googletag.pubads().setCentering(true);
TypeScript
// Make ads centered. googletag.pubads().setCentering(true);
setCentering(centerAds: boolean): void
啟用或停用水平置中廣告。居中預設為停用。在舊版 gpt_mobile.js 中,系統預設會啟用置中功能。
您應在呼叫 display
或 refresh
之前叫用此方法,因為只有在呼叫此方法後要求的廣告才會置中。
參數 | |
---|---|
centerAds: boolean | true :將廣告置中,false 可讓廣告靠左對齊。 |
setForceSafeFrame
- 這項設定只會影響個別版位提出的「後續」廣告請求。
- 如果指定了版位層級設定,系統一律會覆寫網頁層級設定。
- 如果設定為
true
(在版位層級或網頁層級),系統一律會使用 SafeFrame 容器顯示廣告,不受 Google Ad Manager UI 中所做的選擇影響。 - 不過,如果設定為
false
或未指定,系統會根據廣告素材類型和 Google Ad Manager UI 中的選項,使用 SafeFrame 容器顯示廣告。 - 使用這個 API 時請務必小心謹慎,因為這個 API 可能會影響廣告素材跳脫 iframe 或直接透過發布商網頁顯示的廣告素材行為。
- 範例
JavaScript
googletag.pubads().setForceSafeFrame(true); // The following slot will be opted-out of the page-level force // SafeFrame instruction. googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setForceSafeFrame(false) .addService(googletag.pubads()); // The following slot will have SafeFrame forced. googletag.defineSlot("/1234567/news", [160, 600], "div-2").addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
JavaScript (舊版)
googletag.pubads().setForceSafeFrame(true); // The following slot will be opted-out of the page-level force // SafeFrame instruction. googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setForceSafeFrame(false) .addService(googletag.pubads()); // The following slot will have SafeFrame forced. googletag.defineSlot("/1234567/news", [160, 600], "div-2").addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
TypeScript
googletag.pubads().setForceSafeFrame(true); // The following slot will be opted-out of the page-level force // SafeFrame instruction. googletag .defineSlot("/1234567/sports", [160, 600], "div-1")! .setForceSafeFrame(false) .addService(googletag.pubads()); // The following slot will have SafeFrame forced. googletag.defineSlot("/1234567/news", [160, 600], "div-2")!.addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
setForceSafeFrame(forceSafeFrame: boolean): PubAdsService
設定是否應強制使用 SafeFrame 容器來顯示網頁上的所有廣告。
使用此 API 時,請注意下列事項:
參數 | |
---|---|
forceSafeFrame: boolean | true 可強制網頁上的所有廣告在 SafeFrame 中顯示,false 則可將先前的設定變更為 false。如果先前未指定,將此值設為 false 不會造成任何變化。 |
傳回 | |
---|---|
PubAdsService | 系統呼叫函式的服務物件。 |
setLocation
- 範例
JavaScript
// Postal code: googletag.pubads().setLocation("10001,US");
JavaScript (舊版)
// Postal code: googletag.pubads().setLocation("10001,US");
TypeScript
// Postal code: googletag.pubads().setLocation("10001,US");
setLocation(address: string): PubAdsService
傳送網站的位置資訊,方便您將委刊項指定到特定地理區域。
參數 | |
---|---|
address: string | 任意形式的地址。 |
傳回 | |
---|---|
PubAdsService | 呼叫方法的服務物件。 |
setPrivacySettings
- 範例
JavaScript
googletag.pubads().setPrivacySettings({ restrictDataProcessing: true, }); // Set multiple privacy settings at the same time. googletag.pubads().setPrivacySettings({ childDirectedTreatment: true, underAgeOfConsent: true, }); // Clear the configuration for childDirectedTreatment. googletag.pubads().setPrivacySettings({ childDirectedTreatment: null, });
JavaScript (舊版)
googletag.pubads().setPrivacySettings({ restrictDataProcessing: true, }); // Set multiple privacy settings at the same time. googletag.pubads().setPrivacySettings({ childDirectedTreatment: true, underAgeOfConsent: true, }); // Clear the configuration for childDirectedTreatment. googletag.pubads().setPrivacySettings({ childDirectedTreatment: null, });
TypeScript
googletag.pubads().setPrivacySettings({ restrictDataProcessing: true, }); // Set multiple privacy settings at the same time. googletag.pubads().setPrivacySettings({ childDirectedTreatment: true, underAgeOfConsent: true, }); // Clear the configuration for childDirectedTreatment. googletag.pubads().setPrivacySettings({ childDirectedTreatment: null, });
setPrivacySettings(privacySettings: PrivacySettingsConfig): PubAdsService
允許使用設定物件,從單一 API 設定所有隱私權設定。
參數 | |
---|---|
privacySettings: PrivacySettingsConfig | 包含隱私權設定設定的物件。 |
傳回 | |
---|---|
PubAdsService | 呼叫函式的服務物件。 |
setPublisherProvidedId
- 範例
JavaScript
googletag.pubads().setPublisherProvidedId("12JD92JD8078S8J29SDOAKC0EF230337");
JavaScript (舊版)
googletag.pubads().setPublisherProvidedId("12JD92JD8078S8J29SDOAKC0EF230337");
TypeScript
googletag.pubads().setPublisherProvidedId("12JD92JD8078S8J29SDOAKC0EF230337");
- 另請參閱
setPublisherProvidedId(ppid: string): PubAdsService
為發布商提供的 ID 設定值。
參數 | |
---|---|
ppid: string | 由發布商提供的英數字元 ID。長度必須介於 32 到 150 個字元之間。 |
傳回 | |
---|---|
PubAdsService | 呼叫方法的服務物件。 |
setSafeFrameConfig
- 範例
JavaScript
googletag.pubads().setForceSafeFrame(true); const pageConfig = { allowOverlayExpansion: true, allowPushExpansion: true, sandbox: true, }; const slotConfig = { allowOverlayExpansion: false }; googletag.pubads().setSafeFrameConfig(pageConfig); // The following slot will not allow for expansion by overlay. googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setSafeFrameConfig(slotConfig) .addService(googletag.pubads()); // The following slot will inherit the page level settings, and hence // would allow for expansion by overlay. googletag.defineSlot("/1234567/news", [160, 600], "div-2").addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
JavaScript (舊版)
googletag.pubads().setForceSafeFrame(true); var pageConfig = { allowOverlayExpansion: true, allowPushExpansion: true, sandbox: true, }; var slotConfig = { allowOverlayExpansion: false }; googletag.pubads().setSafeFrameConfig(pageConfig); // The following slot will not allow for expansion by overlay. googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setSafeFrameConfig(slotConfig) .addService(googletag.pubads()); // The following slot will inherit the page level settings, and hence // would allow for expansion by overlay. googletag.defineSlot("/1234567/news", [160, 600], "div-2").addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
TypeScript
googletag.pubads().setForceSafeFrame(true); const pageConfig = { allowOverlayExpansion: true, allowPushExpansion: true, sandbox: true, }; const slotConfig = { allowOverlayExpansion: false }; googletag.pubads().setSafeFrameConfig(pageConfig); // The following slot will not allow for expansion by overlay. googletag .defineSlot("/1234567/sports", [160, 600], "div-1")! .setSafeFrameConfig(slotConfig) .addService(googletag.pubads()); // The following slot will inherit the page level settings, and hence // would allow for expansion by overlay. googletag.defineSlot("/1234567/news", [160, 600], "div-2")!.addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
setSafeFrameConfig(config: SafeFrameConfig): PubAdsService
設定 SafeFrame 設定的網頁層級偏好設定。系統會忽略設定物件中無法辨識的任何鍵。如果為已辨識的鍵傳遞無效值,系統會忽略整個設定。
如果指定了版位層級偏好設定,系統會覆寫這些網頁層級偏好設定。
參數 | |
---|---|
config: SafeFrameConfig | 設定物件。 |
傳回 | |
---|---|
PubAdsService | 呼叫方法的服務物件。 |
setTargeting
- 範例
JavaScript
// Example with a single value for a key. googletag.pubads().setTargeting("interests", "sports"); // Example with multiple values for a key inside in an array. googletag.pubads().setTargeting("interests", ["sports", "music"]);
JavaScript (舊版)
// Example with a single value for a key. googletag.pubads().setTargeting("interests", "sports"); // Example with multiple values for a key inside in an array. googletag.pubads().setTargeting("interests", ["sports", "music"]);
TypeScript
// Example with a single value for a key. googletag.pubads().setTargeting("interests", "sports"); // Example with multiple values for a key inside in an array. googletag.pubads().setTargeting("interests", ["sports", "music"]);
- 另請參閱
setTargeting(key: string, value: string | string[]): PubAdsService
為特定鍵設定自訂指定目標參數,套用至所有發布商廣告服務廣告版位。如果針對同一個鍵多次呼叫此方法,系統會覆寫舊值。這些鍵是由您的 Google Ad Manager 帳戶定義。
參數 | |
---|---|
key: string | 指定參數鍵。 |
value: string | string[] | 指定目標參數值或值陣列。 |
傳回 | |
---|---|
PubAdsService | 呼叫方法的服務物件。 |
setVideoContent
updateCorrelator
- 範例
JavaScript
// Assume that the correlator is currently 12345. All ad requests made // by this page will currently use that value. // Replace the current correlator with a new correlator. googletag.pubads().updateCorrelator(); // The correlator will now be a new randomly selected value, different // from 12345. All subsequent ad requests made by this page will use // the new value.
JavaScript (舊版)
// Assume that the correlator is currently 12345. All ad requests made // by this page will currently use that value. // Replace the current correlator with a new correlator. googletag.pubads().updateCorrelator(); // The correlator will now be a new randomly selected value, different // from 12345. All subsequent ad requests made by this page will use // the new value.
TypeScript
// Assume that the correlator is currently 12345. All ad requests made // by this page will currently use that value. // Replace the current correlator with a new correlator. googletag.pubads().updateCorrelator(); // The correlator will now be a new randomly selected value, different // from 12345. All subsequent ad requests made by this page will use // the new value.
updateCorrelator(): PubAdsService
變更與廣告請求一併傳送的 Correlator,有效啟動新的網頁瀏覽。同一個網頁檢視的所有廣告請求都會使用相同的 Correlator,而不同網頁檢視的 Correlator 則各不相同。僅適用於非同步模式。
注意:這不會影響 GPT 的長效網頁瀏覽,因為後者會自動反映實際在網頁上的廣告,且沒有到期時間。
傳回 | |
---|---|
PubAdsService | 系統呼叫函式的服務物件。 |
googletag.ResponseInformation
屬性 | |
---|---|
advertiser | 廣告主的 ID。 |
campaign | 廣告活動 ID。 |
creative | 廣告素材 ID。 |
creative | 廣告的範本 ID。 |
line | 商品項目的 ID。 |
屬性
advertiserId
advertiserId: null | number
廣告主的 ID。
campaignId
campaignId: null | number
廣告活動 ID。
creativeId
creativeId: null | number
廣告素材 ID。
creativeTemplateId
creativeTemplateId: null | number
廣告的範本 ID。
lineItemId
lineItemId: null | number
商品項目的 ID。
googletag.RewardedPayload
屬性 | |
---|---|
amount | 獎勵內含的商品數量。 |
type | 獎勵內含的項目類型 (例如「錢幣」)。 |
- 另請參閱
屬性
金額
amount: number
獎勵內含的商品數量。
type
type: string
獎勵中包含的項目類型 (例如「硬幣」)。
googletag.SafeFrameConfig
屬性 | |
---|---|
allow | 設定 SafeFrame 是否應允許隨著網頁內容重疊而展開廣告內容。 |
allow | 是否允許 SafeFrame 透過推送網頁內容,讓廣告內容展開。 |
sandbox | SafeFrame 是否應使用 HTML5 沙箱屬性,以便在使用者沒有互動的情況下防止頂層導覽。 |
use | 已淘汰。 SafeFrame 是否應為預訂廣告素材使用隨機子網域。 |
屬性
Optional
allowOverlayExpansion
allowOverlayExpansion?: boolean
設定 SafeFrame 是否應允許隨著網頁內容重疊而展開廣告內容。
Optional
allowPushExpansion
allowPushExpansion?: boolean
是否允許 SafeFrame 透過推送網頁內容,讓廣告內容展開。
Optional
sandbox
sandbox?: boolean
SafeFrame 是否應使用 HTML5 沙箱屬性,以便在使用者沒有互動的情況下防止頂層導覽。唯一有效的值是 true
(無法強制設為 false
)。請注意,沙箱屬性會停用外掛程式 (例如 Flash)。
Optional
useUniqueDomain
useUniqueDomain?: null | boolean
是否應為預訂廣告素材使用隨機子網域。傳入 null
即可清除儲存的值。
注意:這項功能預設為啟用。
googletag.Service
方法 | |
---|---|
add | 註冊一個監聽器,讓您可以在頁面上發生特定 GPT 事件時,設定及呼叫 JavaScript 函式。 |
get | 取得與這項服務相關的空檔清單。 |
remove | 移除先前註冊的事件監聽器。 |
方法
addEventListener
- events.GameManualInterstitialSlotClosedEvent
- events.GameManualInterstitialSlotReadyEvent
- events.ImpressionViewableEvent
- events.RewardedSlotClosedEvent
- events.RewardedSlotGrantedEvent
- events.RewardedSlotReadyEvent
- events.SlotOnloadEvent
- events.SlotRenderEndedEvent
- events.SlotRequestedEvent
- events.SlotResponseReceived
- events.SlotVisibilityChangedEvent
- 範例
JavaScript
// 1. Adding an event listener for the PubAdsService. googletag.pubads().addEventListener("slotOnload", (event) => { console.log("Slot has been loaded:"); console.log(event); }); // 2. Adding an event listener with slot specific logic. // Listeners operate at service level, which means that you cannot add // a listener for an event for a specific slot only. You can, however, // programmatically filter a listener to respond only to a certain ad // slot, using this pattern: const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotOnload", (event) => { if (event.slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// 1. Adding an event listener for the PubAdsService. googletag.pubads().addEventListener("slotOnload", function (event) { console.log("Slot has been loaded:"); console.log(event); }); // 2. Adding an event listener with slot specific logic. // Listeners operate at service level, which means that you cannot add // a listener for an event for a specific slot only. You can, however, // programmatically filter a listener to respond only to a certain ad // slot, using this pattern: var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotOnload", function (event) { if (event.slot === targetSlot) { // Slot specific logic. } });
TypeScript
// 1. Adding an event listener for the PubAdsService. googletag.pubads().addEventListener("slotOnload", (event) => { console.log("Slot has been loaded:"); console.log(event); }); // 2. Adding an event listener with slot specific logic. // Listeners operate at service level, which means that you cannot add // a listener for an event for a specific slot only. You can, however, // programmatically filter a listener to respond only to a certain ad // slot, using this pattern: const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotOnload", (event) => { if (event.slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
addEventListener<K extends keyof EventTypeMap>(eventType: K, listener: ((arg: EventTypeMap[K]) => void)): Service
註冊一個監聽器,讓您可以在頁面上發生特定 GPT 事件時,設定及呼叫 JavaScript 函式。支援下列事件:
參數 | |
---|---|
eventType: K | 代表 GPT 產生事件類型的字串。事件類型須區分大小寫; |
listener: ((arg: EventTypeMap[K]) => void) | 採用單一事件物件引數的函式。 |
傳回 | |
---|---|
Service | 呼叫方法的服務物件。 |
getSlots
removeEventListener
- 範例
JavaScript
googletag.cmd.push(() => { // Define a new ad slot. googletag.defineSlot("/6355419/Travel", [728, 90], "div-for-slot").addService(googletag.pubads()); // Define a new function that removes itself via removeEventListener // after the impressionViewable event fires. const onViewableListener = (event) => { googletag.pubads().removeEventListener("impressionViewable", onViewableListener); setTimeout(() => { googletag.pubads().refresh([event.slot]); }, 30000); }; // Add onViewableListener as a listener for impressionViewable events. googletag.pubads().addEventListener("impressionViewable", onViewableListener); googletag.enableServices(); });
JavaScript (舊版)
googletag.cmd.push(function () { // Define a new ad slot. googletag.defineSlot("/6355419/Travel", [728, 90], "div-for-slot").addService(googletag.pubads()); // Define a new function that removes itself via removeEventListener // after the impressionViewable event fires. var onViewableListener = function (event) { googletag.pubads().removeEventListener("impressionViewable", onViewableListener); setTimeout(function () { googletag.pubads().refresh([event.slot]); }, 30000); }; // Add onViewableListener as a listener for impressionViewable events. googletag.pubads().addEventListener("impressionViewable", onViewableListener); googletag.enableServices(); });
TypeScript
googletag.cmd.push(() => { // Define a new ad slot. googletag .defineSlot("/6355419/Travel", [728, 90], "div-for-slot")! .addService(googletag.pubads()); // Define a new function that removes itself via removeEventListener // after the impressionViewable event fires. const onViewableListener = (event: googletag.events.ImpressionViewableEvent) => { googletag.pubads().removeEventListener("impressionViewable", onViewableListener); setTimeout(() => { googletag.pubads().refresh([event.slot]); }, 30000); }; // Add onViewableListener as a listener for impressionViewable events. googletag.pubads().addEventListener("impressionViewable", onViewableListener); googletag.enableServices(); });
removeEventListener<K extends keyof EventTypeMap>(eventType: K, listener: ((event: EventTypeMap[K]) => void)): void
移除先前註冊的事件監聽器。
參數 | |
---|---|
eventType: K | 代表 GPT 產生事件類型的字串。事件類型須區分大小寫; |
listener: ((event: EventTypeMap[K]) => void) | 使用單一事件物件引數的函式。 |
googletag.SizeMappingBuilder
方法 | |
---|---|
add | 新增從單一尺寸陣列 (代表可視區域) 到單一或多個尺寸陣列 (代表版位) 的對應項目。 |
build | 根據新增至此建構工具的對應項目,建立大小對應規格。 |
- 另請參閱
方法
addSize
- 範例
JavaScript
// Mapping 1 googletag .sizeMapping() .addSize([1024, 768], [970, 250]) .addSize([980, 690], [728, 90]) .addSize([640, 480], "fluid") .addSize([0, 0], [88, 31]) // All viewports < 640x480 .build(); // Mapping 2 googletag .sizeMapping() .addSize([1024, 768], [970, 250]) .addSize([980, 690], []) .addSize([640, 480], [120, 60]) .addSize([0, 0], []) .build(); // Mapping 2 will not show any ads for the following viewport sizes: // [1024, 768] > size >= [980, 690] and // [640, 480] > size >= [0, 0]
JavaScript (舊版)
// Mapping 1 googletag .sizeMapping() .addSize([1024, 768], [970, 250]) .addSize([980, 690], [728, 90]) .addSize([640, 480], "fluid") .addSize([0, 0], [88, 31]) // All viewports < 640x480 .build(); // Mapping 2 googletag .sizeMapping() .addSize([1024, 768], [970, 250]) .addSize([980, 690], []) .addSize([640, 480], [120, 60]) .addSize([0, 0], []) .build(); // Mapping 2 will not show any ads for the following viewport sizes: // [1024, 768] > size >= [980, 690] and // [640, 480] > size >= [0, 0]
TypeScript
// Mapping 1 googletag .sizeMapping() .addSize([1024, 768], [970, 250]) .addSize([980, 690], [728, 90]) .addSize([640, 480], "fluid") .addSize([0, 0], [88, 31]) // All viewports < 640x480 .build(); // Mapping 2 googletag .sizeMapping() .addSize([1024, 768], [970, 250]) .addSize([980, 690], []) .addSize([640, 480], [120, 60]) .addSize([0, 0], []) .build(); // Mapping 2 will not show any ads for the following viewport sizes: // [1024, 768] > size >= [980, 690] and // [640, 480] > size >= [0, 0]
addSize(viewportSize: SingleSizeArray, slotSize: GeneralSize): SizeMappingBuilder
新增單一大小陣列 (代表可視區域) 的對應關係,以及代表版位的單一或多種大小陣列。
參數 | |
---|---|
viewportSize: SingleSizeArray | 此對應項目的可視區域大小。 |
slotSize: GeneralSize | 此對應項目的資料片段大小。 |
傳回 | |
---|---|
SizeMappingBuilder | 此建構工具的參照。 |
build
build(): null | SizeMappingArray
根據新增至此建構工具的對應項目,建構大小對應規格。
如果提供任何無效的對應項目,這個方法會傳回 null
。否則,系統會以正確的格式傳回規格,以便傳遞至 Slot.defineSizeMapping。
注意:呼叫此方法後,建構工具的行為未定義。
傳回 | |
---|---|
null | SizeMappingArray | 這個建構工具建構的結果。如果提供的大小對應無效,則可設為空值。 |
googletag.Slot
方法 | |
---|---|
add | |
clear | 清除這個版位所有版位層級的廣告類別排除標籤。 |
clear | 清除這個版位的特定或所有自訂版位層級指定目標參數。 |
define | 為這個版位設定從可視區域大小下限到版位大小的對應陣列。 |
get | 傳回與此版位指定鍵相關聯的 AdSense 屬性值。 |
get | 傳回廣告單元的完整路徑,包含聯播網代碼和廣告單元路徑。 |
get | 傳回這個版位設定的屬性鍵清單。 |
get | 傳回這個版位的廣告類別排除標籤。 |
get | 傳回廣告回應資訊。 |
get | 傳回在定義時提供的空格 div ID。 |
get | 傳回這個版位上的特定自訂指定參數組合。 |
get | 傳回在這個版位上設定的所有自訂指定目標鍵清單。 |
set | 為這個廣告版位設定 AdSense 屬性值。 |
set | 為這個版位設定版位層級廣告類別排除標籤。 |
set | 設定點擊網址,使用者點按廣告後會重新導向至該網址。 |
set | 設定在廣告版位中沒有廣告時,是否應隱藏該廣告版位 div 。 |
set | 設定這個運算單元的一般設定選項。 |
set | 設定是否應強制使用 SafeFrame 容器來顯示這個版位中的廣告。 |
set | 設定 SafeFrame 設定的版位層級偏好設定。 |
set | 為這個版位設定自訂指定目標參數。 |
update | 從 JSON 物件中的 key:value 對應設定這個版位的自訂指定參數。 |
方法
addService
- 範例
JavaScript
googletag.defineSlot("/1234567/sports", [160, 600], "div").addService(googletag.pubads());
JavaScript (舊版)
googletag.defineSlot("/1234567/sports", [160, 600], "div").addService(googletag.pubads());
TypeScript
googletag.defineSlot("/1234567/sports", [160, 600], "div")!.addService(googletag.pubads());
addService(service: Service): Slot
將服務新增至這個版位。
參數 | |
---|---|
service: Service | 要新增的服務。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
clearCategoryExclusions
- 範例
JavaScript
// Set category exclusion to exclude ads with 'AirlineAd' labels. const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setCategoryExclusion("AirlineAd") .addService(googletag.pubads()); // Make an ad request. No ad with 'AirlineAd' label will be returned // for the slot. // Clear category exclusions so all ads can be returned. slot.clearCategoryExclusions(); // Make an ad request. Any ad can be returned for the slot.
JavaScript (舊版)
// Set category exclusion to exclude ads with 'AirlineAd' labels. var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setCategoryExclusion("AirlineAd") .addService(googletag.pubads()); // Make an ad request. No ad with 'AirlineAd' label will be returned // for the slot. // Clear category exclusions so all ads can be returned. slot.clearCategoryExclusions(); // Make an ad request. Any ad can be returned for the slot.
TypeScript
// Set category exclusion to exclude ads with 'AirlineAd' labels. const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setCategoryExclusion("AirlineAd") .addService(googletag.pubads()); // Make an ad request. No ad with 'AirlineAd' label will be returned // for the slot. // Clear category exclusions so all ads can be returned. slot.clearCategoryExclusions(); // Make an ad request. Any ad can be returned for the slot.
clearCategoryExclusions(): Slot
清除這個版位所有版位層級的廣告類別排除標籤。
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
clearTargeting
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setTargeting("allow_expandable", "true") .setTargeting("interests", ["sports", "music"]) .setTargeting("color", "red") .addService(googletag.pubads()); slot.clearTargeting("color"); // Targeting 'allow_expandable' and 'interests' are still present, // while 'color' was cleared. slot.clearTargeting(); // All targeting has been cleared.
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setTargeting("allow_expandable", "true") .setTargeting("interests", ["sports", "music"]) .setTargeting("color", "red") .addService(googletag.pubads()); slot.clearTargeting("color"); // Targeting 'allow_expandable' and 'interests' are still present, // while 'color' was cleared. slot.clearTargeting(); // All targeting has been cleared.
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setTargeting("allow_expandable", "true") .setTargeting("interests", ["sports", "music"]) .setTargeting("color", "red") .addService(googletag.pubads()); slot.clearTargeting("color"); // Targeting 'allow_expandable' and 'interests' are still present, // while 'color' was cleared. slot.clearTargeting(); // All targeting has been cleared.
- 另請參閱
clearTargeting(key?: string): Slot
清除這個版位的特定或所有自訂版位層級指定目標參數。
參數 | |
---|---|
| 指定目標參數鍵。這個鍵為選用項目,如果未指定,系統會清除所有指定目標參數。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
defineSizeMapping
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); const mapping = googletag .sizeMapping() .addSize([100, 100], [88, 31]) .addSize( [320, 400], [ [320, 50], [300, 50], ], ) .build(); slot.defineSizeMapping(mapping);
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); var mapping = googletag .sizeMapping() .addSize([100, 100], [88, 31]) .addSize( [320, 400], [ [320, 50], [300, 50], ], ) .build(); slot.defineSizeMapping(mapping);
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .addService(googletag.pubads()); const mapping = googletag .sizeMapping() .addSize([100, 100], [88, 31]) .addSize( [320, 400], [ [320, 50], [300, 50], ], ) .build(); slot.defineSizeMapping(mapping!);
- 另請參閱
defineSizeMapping(sizeMapping: SizeMappingArray): Slot
為這個版位設定從可視區域大小下限到版位大小的對應陣列。
參數 | |
---|---|
sizeMapping: SizeMappingArray | 大小對應陣列。您可以使用 SizeMappingBuilder 建立此類型。每個大小對應項目都是兩個元素的陣列:SingleSizeArray 和 GeneralSize。 |
傳回 | |
---|---|
Slot | 呼叫該方法的運算單元物件。 |
get
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .set("adsense_background_color", "#FFFFFF") .addService(googletag.pubads()); slot.get("adsense_background_color"); // Returns '#FFFFFF'.
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .set("adsense_background_color", "#FFFFFF") .addService(googletag.pubads()); slot.get("adsense_background_color"); // Returns '#FFFFFF'.
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .set("adsense_background_color", "#FFFFFF") .addService(googletag.pubads()); slot.get("adsense_background_color"); // Returns '#FFFFFF'.
- 另請參閱
get(key: string): null | string
傳回與此版位指定鍵相關聯的 AdSense 屬性值。如要查看這個版位繼承的服務層級屬性,請使用 PubAdsService.get。
參數 | |
---|---|
key: string | 要搜尋的屬性名稱。 |
傳回 | |
---|---|
null | string | 屬性鍵的目前值,如果沒有鍵,則為 null 。 |
getAdUnitPath
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); slot.getAdUnitPath(); // Returns '/1234567/sports'.
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); slot.getAdUnitPath(); // Returns '/1234567/sports'.
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .addService(googletag.pubads()); slot.getAdUnitPath(); // Returns '/1234567/sports'.
getAdUnitPath(): string
傳回廣告單元的完整路徑,包括聯播網代碼和廣告單元路徑。
傳回 | |
---|---|
string | 廣告單元路徑。 |
getAttributeKeys
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .set("adsense_background_color", "#FFFFFF") .set("adsense_border_color", "#AABBCC") .addService(googletag.pubads()); slot.getAttributeKeys(); // Returns ['adsense_background_color', 'adsense_border_color'].
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .set("adsense_background_color", "#FFFFFF") .set("adsense_border_color", "#AABBCC") .addService(googletag.pubads()); slot.getAttributeKeys(); // Returns ['adsense_background_color', 'adsense_border_color'].
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .set("adsense_background_color", "#FFFFFF") .set("adsense_border_color", "#AABBCC") .addService(googletag.pubads()); slot.getAttributeKeys(); // Returns ['adsense_background_color', 'adsense_border_color'].
getAttributeKeys(): string[]
傳回這個版位設定的屬性鍵清單。如要查看這個版位繼承的服務層級屬性鍵,請使用 PubAdsService.getAttributeKeys。
傳回 | |
---|---|
string[] | 屬性鍵的陣列。排序未定義。 |
getCategoryExclusions
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setCategoryExclusion("AirlineAd") .setCategoryExclusion("TrainAd") .addService(googletag.pubads()); slot.getCategoryExclusions(); // Returns ['AirlineAd', 'TrainAd'].
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setCategoryExclusion("AirlineAd") .setCategoryExclusion("TrainAd") .addService(googletag.pubads()); slot.getCategoryExclusions(); // Returns ['AirlineAd', 'TrainAd'].
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setCategoryExclusion("AirlineAd") .setCategoryExclusion("TrainAd") .addService(googletag.pubads()); slot.getCategoryExclusions(); // Returns ['AirlineAd', 'TrainAd'].
getCategoryExclusions(): string[]
傳回這個版位的廣告類別排除標籤。
傳回 | |
---|---|
string[] | 這個版位適用的廣告類別排除標籤,如果未設定任何標籤,則為空陣列。 |
getResponseInformation
getResponseInformation(): null | ResponseInformation
傳回廣告回應資訊。根據針對該版位的最後一個廣告回應而定。如果在版位沒有廣告時呼叫此方法,系統會傳回 null
。
傳回 | |
---|---|
null | ResponseInformation | 最新的廣告回應資訊,如果版位沒有廣告,則為 null 。 |
getSlotElementId
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); slot.getSlotElementId(); // Returns 'div'.
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); slot.getSlotElementId(); // Returns 'div'.
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .addService(googletag.pubads()); slot.getSlotElementId(); // Returns 'div'.
getSlotElementId(): string
傳回在定義時提供的空格 div
ID。
傳回 | |
---|---|
string | 版位 div ID。 |
getTargeting
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setTargeting("allow_expandable", "true") .addService(googletag.pubads()); slot.getTargeting("allow_expandable"); // Returns ['true']. slot.getTargeting("age"); // Returns [] (empty array).
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setTargeting("allow_expandable", "true") .addService(googletag.pubads()); slot.getTargeting("allow_expandable"); // Returns ['true']. slot.getTargeting("age"); // Returns [] (empty array).
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setTargeting("allow_expandable", "true") .addService(googletag.pubads()); slot.getTargeting("allow_expandable"); // Returns ['true']. slot.getTargeting("age"); // Returns [] (empty array).
getTargeting(key: string): string[]
傳回此版位上的某個自訂指定參數。不包含服務層級的指定目標參數。
參數 | |
---|---|
key: string | 要尋找的指定鍵。 |
傳回 | |
---|---|
string[] | 與此鍵相關聯的值,如果沒有此鍵,則傳回空陣列。 |
getTargetingKeys
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setTargeting("allow_expandable", "true") .setTargeting("interests", ["sports", "music"]) .addService(googletag.pubads()); slot.getTargetingKeys(); // Returns ['interests', 'allow_expandable'].
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .setTargeting("allow_expandable", "true") .setTargeting("interests", ["sports", "music"]) .addService(googletag.pubads()); slot.getTargetingKeys(); // Returns ['interests', 'allow_expandable'].
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setTargeting("allow_expandable", "true") .setTargeting("interests", ["sports", "music"]) .addService(googletag.pubads()); slot.getTargetingKeys(); // Returns ['interests', 'allow_expandable'].
getTargetingKeys(): string[]
傳回在這個版位上設定的所有自訂指定目標鍵清單。不包含服務層級的指定鍵。
傳回 | |
---|---|
string[] | 指定鍵的陣列。排序未定義。 |
set
- 範例
JavaScript
// Setting an attribute on a single ad slot. googletag .defineSlot("/1234567/sports", [160, 600], "div") .set("adsense_background_color", "#FFFFFF") .addService(googletag.pubads());
JavaScript (舊版)
// Setting an attribute on a single ad slot. googletag .defineSlot("/1234567/sports", [160, 600], "div") .set("adsense_background_color", "#FFFFFF") .addService(googletag.pubads());
TypeScript
// Setting an attribute on a single ad slot. googletag .defineSlot("/1234567/sports", [160, 600], "div")! .set("adsense_background_color", "#FFFFFF") .addService(googletag.pubads());
- 另請參閱
set(key: string, value: string): Slot
為這個廣告版位設定 AdSense 屬性值。這會覆寫該鍵在服務層級設定的任何值。
如果為同一個鍵重複呼叫這個方法,該鍵先前設定的值將遭到覆寫。必須先設定所有值,才能呼叫 display
或 refresh
。
參數 | |
---|---|
key: string | 屬性名稱。 |
value: string | 屬性值。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
setCategoryExclusion
- 範例
JavaScript
// Label = AirlineAd googletag .defineSlot("/1234567/sports", [160, 600], "div") .setCategoryExclusion("AirlineAd") .addService(googletag.pubads());
JavaScript (舊版)
// Label = AirlineAd googletag .defineSlot("/1234567/sports", [160, 600], "div") .setCategoryExclusion("AirlineAd") .addService(googletag.pubads());
TypeScript
// Label = AirlineAd googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setCategoryExclusion("AirlineAd") .addService(googletag.pubads());
- 另請參閱
setCategoryExclusion(categoryExclusion: string): Slot
為這個版位設定版位層級廣告類別排除標籤。
參數 | |
---|---|
categoryExclusion: string | 要新增的廣告類別排除標籤。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
setClickUrl
- 範例
JavaScript
googletag .defineSlot("/1234567/sports", [160, 600], "div") .setClickUrl("http://www.example.com?original_click_url=") .addService(googletag.pubads());
JavaScript (舊版)
googletag .defineSlot("/1234567/sports", [160, 600], "div") .setClickUrl("http://www.example.com?original_click_url=") .addService(googletag.pubads());
TypeScript
googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setClickUrl("http://www.example.com?original_click_url=") .addService(googletag.pubads());
setClickUrl(value: string): Slot
設定點擊網址,使用者點按廣告後會重新導向至該網址。
即使點擊網址已取代,Google Ad Manager 伺服器仍會記錄點擊。凡是與放送的廣告素材相關聯的到達網頁網址,都會附加至你提供的值。後續呼叫會覆寫該值。這項功能僅適用於非 SRA 要求。
參數 | |
---|---|
value: string | 要設定的點擊網址。 |
傳回 | |
---|---|
Slot | 呼叫該方法的運算單元物件。 |
setCollapseEmptyDiv
- 範例
JavaScript
googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setCollapseEmptyDiv(true, true) .addService(googletag.pubads()); // The above will cause the div for this slot to be collapsed // when the page is loaded, before ads are requested. googletag .defineSlot("/1234567/sports", [160, 600], "div-2") .setCollapseEmptyDiv(true) .addService(googletag.pubads()); // The above will cause the div for this slot to be collapsed // only after GPT detects that no ads are available for the slot.
JavaScript (舊版)
googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setCollapseEmptyDiv(true, true) .addService(googletag.pubads()); // The above will cause the div for this slot to be collapsed // when the page is loaded, before ads are requested. googletag .defineSlot("/1234567/sports", [160, 600], "div-2") .setCollapseEmptyDiv(true) .addService(googletag.pubads()); // The above will cause the div for this slot to be collapsed // only after GPT detects that no ads are available for the slot.
TypeScript
googletag .defineSlot("/1234567/sports", [160, 600], "div-1")! .setCollapseEmptyDiv(true, true) .addService(googletag.pubads()); // The above will cause the div for this slot to be collapsed // when the page is loaded, before ads are requested. googletag .defineSlot("/1234567/sports", [160, 600], "div-2")! .setCollapseEmptyDiv(true) .addService(googletag.pubads()); // The above will cause the div for this slot to be collapsed // only after GPT detects that no ads are available for the slot.
- 另請參閱
setCollapseEmptyDiv(collapse: boolean, collapseBeforeAdFetch?: boolean): Slot
設定在廣告版位中沒有廣告時,是否應隱藏該廣告版位 div
。這會覆寫服務層級設定。
參數 | |
---|---|
collapse: boolean | 是否在沒有傳回廣告時收合版位。 |
| 即使在擷取廣告前,是否也要收合版位。如果折疊不是 true ,則會遭到忽略。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
setConfig
setConfig(slotConfig: SlotSettingsConfig): void
設定這個版位的一般設定選項。
參數 | |
---|---|
slotConfig: SlotSettingsConfig | 設定物件。 |
setForceSafeFrame
- 這項設定只會影響後續針對個別廣告位元建立的廣告請求。
- 如果指定了版位層級設定,系統一律會覆寫網頁層級設定。
- 如果設定為
true
(在版位層級或網頁層級),系統一律會使用 SafeFrame 容器顯示廣告,不受 Google Ad Manager UI 中所做的選擇影響。 - 不過,如果設定為
false
或未指定,系統會根據廣告素材類型和 Google Ad Manager UI 中的選項,使用 SafeFrame 容器顯示廣告。 - 使用這個 API 時請務必小心謹慎,因為這個 API 可能會影響廣告素材跳脫 iframe 或直接透過發布商網頁顯示的廣告素材行為。
- 範例
JavaScript
googletag .defineSlot("/1234567/sports", [160, 600], "div") .setForceSafeFrame(true) .addService(googletag.pubads());
JavaScript (舊版)
googletag .defineSlot("/1234567/sports", [160, 600], "div") .setForceSafeFrame(true) .addService(googletag.pubads());
TypeScript
googletag .defineSlot("/1234567/sports", [160, 600], "div")! .setForceSafeFrame(true) .addService(googletag.pubads());
setForceSafeFrame(forceSafeFrame: boolean): Slot
設定是否應強制使用 SafeFrame 容器顯示這個版位中的廣告。
使用這個 API 時,請留意下列事項:
參數 | |
---|---|
forceSafeFrame: boolean | true 可強制在 SafeFrame 中顯示這個版位中的所有廣告,false 可選擇停用網頁層級設定 (如有)。如未在頁面層級指定,將此欄位設為 false ,並不會變更任何設定。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
setSafeFrameConfig
- 範例
JavaScript
googletag.pubads().setForceSafeFrame(true); // The following slot will have a sandboxed safeframe that only // disallows top-level navigation. googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setSafeFrameConfig({ sandbox: true }) .addService(googletag.pubads()); // The following slot will inherit page-level settings. googletag.defineSlot("/1234567/news", [160, 600], "div-2").addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
JavaScript (舊版)
googletag.pubads().setForceSafeFrame(true); // The following slot will have a sandboxed safeframe that only // disallows top-level navigation. googletag .defineSlot("/1234567/sports", [160, 600], "div-1") .setSafeFrameConfig({ sandbox: true }) .addService(googletag.pubads()); // The following slot will inherit page-level settings. googletag.defineSlot("/1234567/news", [160, 600], "div-2").addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
TypeScript
googletag.pubads().setForceSafeFrame(true); // The following slot will have a sandboxed safeframe that only // disallows top-level navigation. googletag .defineSlot("/1234567/sports", [160, 600], "div-1")! .setSafeFrameConfig({ sandbox: true }) .addService(googletag.pubads()); // The following slot will inherit page-level settings. googletag.defineSlot("/1234567/news", [160, 600], "div-2")!.addService(googletag.pubads()); googletag.display("div-1"); googletag.display("div-2");
setSafeFrameConfig(config: null | SafeFrameConfig): Slot
設定 SafeFrame 設定的版位層級偏好設定。系統會忽略設定物件中所有無法辨識的金鑰。如果為已辨識的鍵傳遞無效值,系統會忽略整個設定。
如果指定了這些版位層級偏好設定,系統會覆寫所有網頁層級偏好設定。
參數 | |
---|---|
config: null | SafeFrameConfig | 設定物件。 |
傳回 | |
---|---|
Slot | 呼叫該方法的運算單元物件。 |
setTargeting
- 範例
JavaScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); // Example with a single value for a key. slot.setTargeting("allow_expandable", "true"); // Example with multiple values for a key inside in an array. slot.setTargeting("interests", ["sports", "music"]);
JavaScript (舊版)
var slot = googletag .defineSlot("/1234567/sports", [160, 600], "div") .addService(googletag.pubads()); // Example with a single value for a key. slot.setTargeting("allow_expandable", "true"); // Example with multiple values for a key inside in an array. slot.setTargeting("interests", ["sports", "music"]);
TypeScript
const slot = googletag .defineSlot("/1234567/sports", [160, 600], "div")! .addService(googletag.pubads()); // Example with a single value for a key. slot.setTargeting("allow_expandable", "true"); // Example with multiple values for a key inside in an array. slot.setTargeting("interests", ["sports", "music"]);
- 另請參閱
setTargeting(key: string, value: string | string[]): Slot
為這個版位設定自訂指定目標參數。針對同一個鍵多次呼叫此方法,會覆寫舊值。這裡設定的值會覆寫在服務層級設定的值。這些鍵是在 Google Ad Manager 帳戶中定義。
參數 | |
---|---|
key: string | 指定參數鍵。 |
value: string | string[] | 指定目標參數值或值陣列。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
updateTargetingFromMap
- 如果發生覆寫,系統只會保留最後一個值。
- 如果值是陣列,則系統會覆寫任何先前的值,而非合併。
- 這裡設定的值會覆寫在服務層級設定的值。
- 範例
JavaScript
const slot = googletag.defineSlot("/1234567/sports", [160, 600], "div"); slot.updateTargetingFromMap({ color: "red", interests: ["sports", "music", "movies"], });
JavaScript (舊版)
var slot = googletag.defineSlot("/1234567/sports", [160, 600], "div"); slot.updateTargetingFromMap({ color: "red", interests: ["sports", "music", "movies"], });
TypeScript
const slot = googletag.defineSlot("/1234567/sports", [160, 600], "div")!; slot.updateTargetingFromMap({ color: "red", interests: ["sports", "music", "movies"], });
updateTargetingFromMap(map: {
[adUnitPath: string]: string | string[];
}): Slot
從 JSON 物件中的 key:value 對應設定這個版位的自訂指定參數。這與為物件的所有鍵值呼叫 Slot.setTargeting 相同。這些鍵是在 Google Ad Manager 帳戶中定義。
附註:
參數 | |
---|---|
map: { | 指定目標參數的鍵/值對應。 |
傳回 | |
---|---|
Slot | 呼叫方法的空格物件。 |
googletag.config
介面 | |
---|---|
Ad | 控制廣告展開功能的設定。 |
Component | 代表裝置端廣告競價中單一元件競價的物件。 |
Interstitial | 定義單一插播式廣告版位行為的物件。 |
Page | 頁面層級設定的主要設定介面。 |
Privacy | 用於控管發布商隱私權處理方式的設定。 |
Publisher | 發布商提供的信號 (PPS) 設定物件。 |
Slot | 時段層級設定的主要設定介面。 |
Taxonomy | 包含單一分類方式值的物件。 |
型別別名 | |
---|---|
Interstitial | 支援的插頁式廣告觸發條件。 |
Privacy | 支援的發布商隱私權處理方式。 |
Taxonomy | 發布商提供的信號 (PPS) 支援的分類。 |
型別別名
InterstitialTrigger
InterstitialTrigger: "unhideWindow" | "navBar"
支援的插頁式廣告觸發條件。
PrivacyTreatment
PrivacyTreatment: "disablePersonalization"
支援的發布商隱私權處理方式。
分類
Taxonomy: "IAB_AUDIENCE_1_1" | "IAB_CONTENT_2_2"
發布商提供的信號 (PPS) 支援的分類。
googletag.config.AdExpansionConfig
屬性 | |
---|---|
enabled | 是否已啟用廣告展開功能。 |
- 範例
JavaScript
// Enable ad slot expansion across the entire page. googletag.setConfig({ adExpansion: { enabled: true }, });
JavaScript (舊版)
// Enable ad slot expansion across the entire page. googletag.setConfig({ adExpansion: { enabled: true }, });
TypeScript
// Enable ad slot expansion across the entire page. googletag.setConfig({ adExpansion: { enabled: true }, });
屬性
Optional
已啟用
enabled?: boolean
是否啟用或停用廣告展開功能。
設定這個值會覆寫 Google Ad Manager 中設定的預設值。
googletag.config.ComponentAuctionConfig
屬性 | |
---|---|
auction | 此元件競價的競價設定物件。 |
config | 與此元件競價相關聯的設定鍵。 |
屬性
auctionConfig
- 範例
JavaScript
const componentAuctionConfig = { // Seller URL should be https and the same as decisionLogicUrl's origin seller: "https://testSeller.com", decisionLogicUrl: "https://testSeller.com/ssp/decision-logic.js", interestGroupBuyers: ["https://example-buyer.com"], auctionSignals: { auction_signals: "auction_signals" }, sellerSignals: { seller_signals: "seller_signals" }, perBuyerSignals: { // listed on interestGroupBuyers "https://example-buyer.com": { per_buyer_signals: "per_buyer_signals", }, }, }; const auctionSlot = googletag.defineSlot("/1234567/example", [160, 600]); // To add configKey to the component auction: auctionSlot.setConfig({ componentAuction: [ { configKey: "https://testSeller.com", auctionConfig: componentAuctionConfig, }, ], }); // To remove configKey from the component auction: auctionSlot.setConfig({ componentAuction: [ { configKey: "https://testSeller.com", auctionConfig: null, }, ], });
JavaScript (舊版)
var componentAuctionConfig = { // Seller URL should be https and the same as decisionLogicUrl's origin seller: "https://testSeller.com", decisionLogicUrl: "https://testSeller.com/ssp/decision-logic.js", interestGroupBuyers: ["https://example-buyer.com"], auctionSignals: { auction_signals: "auction_signals" }, sellerSignals: { seller_signals: "seller_signals" }, perBuyerSignals: { // listed on interestGroupBuyers "https://example-buyer.com": { per_buyer_signals: "per_buyer_signals", }, }, }; var auctionSlot = googletag.defineSlot("/1234567/example", [160, 600]); // To add configKey to the component auction: auctionSlot.setConfig({ componentAuction: [ { configKey: "https://testSeller.com", auctionConfig: componentAuctionConfig, }, ], }); // To remove configKey from the component auction: auctionSlot.setConfig({ componentAuction: [ { configKey: "https://testSeller.com", auctionConfig: null, }, ], });
TypeScript
const componentAuctionConfig = { // Seller URL should be https and the same as decisionLogicUrl's origin seller: "https://testSeller.com", decisionLogicUrl: "https://testSeller.com/ssp/decision-logic.js", interestGroupBuyers: ["https://example-buyer.com"], auctionSignals: { auction_signals: "auction_signals" }, sellerSignals: { seller_signals: "seller_signals" }, perBuyerSignals: { // listed on interestGroupBuyers "https://example-buyer.com": { per_buyer_signals: "per_buyer_signals", }, }, }; const auctionSlot = googletag.defineSlot("/1234567/example", [160, 600])!; // To add configKey to the component auction: auctionSlot.setConfig({ componentAuction: [ { configKey: "https://testSeller.com", auctionConfig: componentAuctionConfig, }, ], }); // To remove configKey from the component auction: auctionSlot.setConfig({ componentAuction: [ { configKey: "https://testSeller.com", auctionConfig: null, }, ], });
auctionConfig: null | {
auctionSignals?: unknown;
decisionLogicUrl: string;
interestGroupBuyers?: string[];
perBuyerExperimentGroupIds?: {
[buyer: string]: number;
};
perBuyerGroupLimits?: {
[buyer: string]: number;
};
perBuyerSignals?: {
[buyer: string]: unknown;
};
perBuyerTimeouts?: {
[buyer: string]: number;
};
seller: string;
sellerExperimentGroupId?: number;
sellerSignals?: unknown;
sellerTimeout?: number;
trustedScoringSignalsUrl?: string;
}
此元件競價的競價設定物件。
如果此值設為 null
,系統會刪除指定 configKey
的任何現有設定。
configKey
configKey: string
與此元件競價相關聯的設定鍵。
此值不得空白,且不得重複。如果兩個 ComponentAuctionConfig
物件共用相同的 configKey 值,則最後設定的值會覆寫先前的設定。
googletag.config.InterstitialConfig
屬性 | |
---|---|
triggers | 插頁式廣告的插頁式廣告觸發條件設定。 |
屬性
Optional
triggers
- 範例
JavaScript
// Define a GPT managed web interstitial ad slot. const interstitialSlot = googletag.defineOutOfPageSlot( "/1234567/sports", googletag.enums.OutOfPageFormat.INTERSTITIAL, ); // Enable optional interstitial triggers. // Change this value to false to disable. const enableTriggers = true; interstitialSlot.setConfig({ interstitial: { triggers: { navBar: enableTriggers, unhideWindow: enableTriggers, }, }, });
JavaScript (舊版)
// Define a GPT managed web interstitial ad slot. var interstitialSlot = googletag.defineOutOfPageSlot( "/1234567/sports", googletag.enums.OutOfPageFormat.INTERSTITIAL, ); // Enable optional interstitial triggers. // Change this value to false to disable. var enableTriggers = true; interstitialSlot.setConfig({ interstitial: { triggers: { navBar: enableTriggers, unhideWindow: enableTriggers, }, }, });
TypeScript
// Define a GPT managed web interstitial ad slot. const interstitialSlot = googletag.defineOutOfPageSlot( "/1234567/sports", googletag.enums.OutOfPageFormat.INTERSTITIAL, )!; // Enable optional interstitial triggers. // Change this value to false to disable. const enableTriggers = true; interstitialSlot.setConfig({ interstitial: { triggers: { navBar: enableTriggers, unhideWindow: enableTriggers, }, }, });
- 另請參閱
triggers?: Partial<Record<InterstitialTrigger, boolean>>
插頁式廣告的插頁式觸發事件設定。
將插頁式觸發事件的值設為 true
會啟用插頁式觸發事件,而 false
會停用插頁式觸發事件。這會覆寫 在 Google Ad Manager 中設定的預設值。
googletag.config.PageSettingsConfig
可透過單一 API 呼叫設定多項功能。
下方列出的所有屬性均為示例,並未反映實際使用 setConfig 的功能。如需功能集,請參閱下方 PageSettingsConfig 類型中的欄位。
範例:
- 系統只會修改 googletag.setConfig 呼叫中指定的功能。
// Configure feature alpha. googletag.setConfig({ alpha: {...} }); // Configure feature bravo. Feature alpha is unchanged. googletag.setConfig({ bravo: {...} });
- 每次呼叫 googletag.setConfig 時,系統都會更新特定功能的所有設定。
// Configure feature charlie to echo = 1, foxtrot = true. googletag.setConfig({ charlie: { echo: 1, foxtrot: true, } }); // Update feature charlie to echo = 2. Since foxtrot was not specified, // the value is cleared. googletag.setConfig({ charlie: { echo: 2 } });
- 您可以傳遞
null
,清除功能的所有設定。// Configure features delta, golf, and hotel. googletag.setConfig({ delta: {...}, golf: {...}, hotel: {...}, }); // Feature delta and hotel are cleared, but feature golf remains set. googletag.setConfig({ delta: null, hotel: null, });
屬性 | |
---|---|
ad | 廣告展開控制項的設定。 |
ad | 已淘汰 。 |
pps | 用來控制發布商提供的信號 (PPS) 的設定。 |
privacy | 用於控管發布商隱私權處理方式的設定。 |
thread | 設定用於控管 GPT 在算繪廣告素材時是否應產生 JS 執行緒。 |
屬性
Optional
adExpansion
adExpansion?: null | AdExpansionConfig
控制廣告展開功能的設定。
Optional
adYield
adYield?: null | "DISABLED" | "ENABLED_ALL_SLOTS"
Optional
pps
pps?: null | PublisherProvidedSignalsConfig
用來控制發布商提供的信號 (PPS) 的設定。
Optional
privacyTreatments
privacyTreatments?: null | PrivacyTreatmentsConfig
用於控管發布商隱私權處理方式的設定。
Optional
threadYield
null
(預設):GPT 會針對可視區域外的版位產生 JS 執行緒。ENABLED_ALL_SLOTS
:無論單元格是否位於可視區域內,GPT 都會為所有單元格產生 JS 執行緒。DISABLED
:GPT 不會產生 JS 執行緒。- 範例
JavaScript
// Disable yielding. googletag.setConfig({ threadYield: "DISABLED" }); // Enable yielding for all slots. googletag.setConfig({ threadYield: "ENABLED_ALL_SLOTS" }); // Enable yielding only for slots outside of the viewport (default). googletag.setConfig({ threadYield: null });
JavaScript (舊版)
// Disable yielding. googletag.setConfig({ threadYield: "DISABLED" }); // Enable yielding for all slots. googletag.setConfig({ threadYield: "ENABLED_ALL_SLOTS" }); // Enable yielding only for slots outside of the viewport (default). googletag.setConfig({ threadYield: null });
TypeScript
// Disable yielding. googletag.setConfig({ threadYield: "DISABLED" }); // Enable yielding for all slots. googletag.setConfig({ threadYield: "ENABLED_ALL_SLOTS" }); // Enable yielding only for slots outside of the viewport (default). googletag.setConfig({ threadYield: null });
- 另請參閱
threadYield?: null | "DISABLED" | "ENABLED_ALL_SLOTS"
設定用於控制 GPT 在算繪廣告素材時是否應產生 JS 執行緒。
GPT 只會在支援 Scheduler.postTask 或 Scheduler.yield API 的瀏覽器中產生。
支援的值:
googletag.config.PrivacyTreatmentsConfig
屬性 | |
---|---|
treatments | 要啟用的發布商隱私權處理方式陣列。 |
屬性
治療方式
- 範例
JavaScript
// Disable personalization across the entire page. googletag.setConfig({ privacyTreatments: { treatments: ["disablePersonalization"] }, });
JavaScript (舊版)
// Disable personalization across the entire page. googletag.setConfig({ privacyTreatments: { treatments: ["disablePersonalization"] }, });
TypeScript
// Disable personalization across the entire page. googletag.setConfig({ privacyTreatments: { treatments: ["disablePersonalization"] }, });
treatments: "disablePersonalization"[]
要啟用的發布商隱私權處理方式陣列。
googletag.config.PublisherProvidedSignalsConfig
屬性 | |
---|---|
taxonomies | 包含分類法對應項目的物件。 |
- 範例
JavaScript
googletag.setConfig({ pps: { taxonomies: { IAB_AUDIENCE_1_1: { values: ["6", "626"] }, // '6' = 'Demographic | Age Range | 30-34' // '626' = 'Interest | Sports | Darts' IAB_CONTENT_2_2: { values: ["48", "127"] }, // '48' = 'Books and Literature | Fiction' // '127' = 'Careers | Job Search' }, }, });
JavaScript (舊版)
googletag.setConfig({ pps: { taxonomies: { IAB_AUDIENCE_1_1: { values: ["6", "626"] }, // '6' = 'Demographic | Age Range | 30-34' // '626' = 'Interest | Sports | Darts' IAB_CONTENT_2_2: { values: ["48", "127"] }, // '48' = 'Books and Literature | Fiction' // '127' = 'Careers | Job Search' }, }, });
TypeScript
googletag.setConfig({ pps: { taxonomies: { IAB_AUDIENCE_1_1: { values: ["6", "626"] }, // '6' = 'Demographic | Age Range | 30-34' // '626' = 'Interest | Sports | Darts' IAB_CONTENT_2_2: { values: ["48", "127"] }, // '48' = 'Books and Literature | Fiction' // '127' = 'Careers | Job Search' }, }, });
屬性
分類
taxonomies: Partial<Record<Taxonomy, TaxonomyData>>
包含分類法對應項目的物件。
googletag.config.SlotSettingsConfig
可透過單一 API 呼叫為單一時段設定多項功能。
下方列出的所有屬性均為示例,並未反映實際使用 setConfig 的功能。如需功能組合,請參閱下方 SlotSettingsConfig 類型中的欄位。
範例:
- 系統只會修改 Slot.setConfig 呼叫中指定的功能。
const slot = googletag.defineSlot("/1234567/example", [160, 600]); // Configure feature alpha. slot.setConfig({ alpha: {...} }); // Configure feature bravo. Feature alpha is unchanged. slot.setConfig({ bravo: {...} });
- 每次呼叫 Slot.setConfig 時,系統都會更新特定功能的所有設定。
// Configure feature charlie to echo = 1, foxtrot = true. slot.setConfig({ charlie: { echo: 1, foxtrot: true, } }); // Update feature charlie to echo = 2. Since foxtrot was not specified, // the value is cleared. slot.setConfig({ charlie: { echo: 2 } });
- 您可以傳遞
null
,清除功能的所有設定。// Configure features delta, golf, and hotel. slot.setConfig({ delta: {...}, golf: {...}, hotel: {...}, }); // Feature delta and hotel are cleared, but feature golf remains set. slot.setConfig({ delta: null, hotel: null, });
屬性 | |
---|---|
ad | 控制廣告展開功能的設定。 |
component | 裝置端廣告競價中要納入的元件競價陣列。 |
interstitial | 用於控制插頁式廣告版位行為的設定。 |
屬性
Optional
adExpansion
adExpansion?: AdExpansionConfig
控制廣告展開功能的設定。
Optional
componentAuction
componentAuction?: ComponentAuctionConfig[]
可納入裝置端廣告競價的一系列元件競價。
Optional
interstitial
interstitial?: InterstitialConfig
控制插頁式廣告版位行為的設定。
googletag.config.TaxonomyData
屬性 | |
---|---|
values | Taxonomy 值清單。 |
屬性
值
values: string[]
Taxonomy 值清單。
googletag.enums
列舉 | |
---|---|
Out | GPT 支援的非頁內廣告格式。 |
Traffic | GPT 支援的流量來源。 |
列舉
OutOfPageFormat
TrafficSource
TrafficSource
GPT 支援的流量來源。
列舉成員 | |
---|---|
ORGANIC | 直接輸入網址、網站搜尋或應用程式下載。 |
PURCHASED | 從其他非自有資源重新導向而來的流量 (自他處取得或來自獎勵活動)。 |
googletag.events
介面 | |
---|---|
Event | 所有 GPT 事件的基本介面。 |
Event | 這是一個偽類型,可將事件名稱對應至 Service.addEventListener 和 Service.removeEventListener 的對應事件物件類型。 |
Game | 使用者關閉遊戲手動插頁式廣告時,系統會觸發這項事件。 |
Game | 當手動插頁式遊戲廣告版位已可向使用者顯示時,系統會觸發此事件。 |
Impression | 曝光符合 Active View 條件後,就會觸發這個事件。 |
Rewarded | 使用者關閉獎勵廣告版位時,系統會觸發這個事件。 |
Rewarded | 獎勵觀看獎勵廣告後,就會觸發此事件。 |
Rewarded | 當獎勵廣告準備好顯示時,系統會觸發此事件。 |
Slot | 廣告素材的 iframe 觸發載入事件時,會觸發此事件。 |
Slot | 當廣告素材程式碼插入版位時,會觸發此事件。 |
Slot | 當系統為特定版位要求廣告時,就會觸發這個事件。 |
Slot | 系統收到特定版位的廣告回應時,就會觸發這項事件。 |
Slot | 廣告版位區域在畫面上的百分比發生變化時,系統就會觸發這個事件。 |
googletag.events.Event
屬性 | |
---|---|
service | 觸發事件的服務名稱。 |
slot | 觸發事件的時間間隔。 |
- 另請參閱
屬性
serviceName
serviceName: string
觸發事件的服務名稱。
slot
slot: Slot
觸發事件的時間間隔。
googletag.events.EventTypeMap
屬性
gameManualInterstitialSlotClosed
gameManualInterstitialSlotClosed: GameManualInterstitialSlotClosedEvent
gameManualInterstitialSlotReady
gameManualInterstitialSlotReady: GameManualInterstitialSlotReadyEvent
impressionViewable
impressionViewable: ImpressionViewableEvent
rewardedSlotClosed
rewardedSlotClosed: RewardedSlotClosedEvent
rewardedSlotGranted
rewardedSlotGranted: RewardedSlotGrantedEvent
rewardedSlotReady
rewardedSlotReady: RewardedSlotReadyEvent
slotOnload
slotOnload: SlotOnloadEvent
slotRenderEnded
slotRenderEnded: SlotRenderEndedEvent
slotRequested
slotRequested: SlotRequestedEvent
slotResponseReceived
slotResponseReceived: SlotResponseReceived
slotVisibilityChanged
slotVisibilityChanged: SlotVisibilityChangedEvent
googletag.events.GameManualInterstitialSlotClosedEvent
延長屬性 | |
---|---|
service | 觸發事件的服務名稱。 從 |
slot | 觸發事件的時間間隔。 從 |
- 範例
JavaScript
// This listener is called when a game manual interstial slot is closed. const targetSlot = googletag.defineOutOfPageSlot( "/1234567/example", googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL, ); googletag.pubads().addEventListener("gameManualInterstitialSlotClosed", (event) => { const slot = event.slot; console.log("Game manual interstital slot", slot.getSlotElementId(), "is closed."); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when a game manual interstial slot is closed. var targetSlot = googletag.defineOutOfPageSlot( "/1234567/example", googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL, ); googletag.pubads().addEventListener("gameManualInterstitialSlotClosed", function (event) { var slot = event.slot; console.log("Game manual interstital slot", slot.getSlotElementId(), "is closed."); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when a game manual interstial slot is closed. const targetSlot = googletag.defineOutOfPageSlot( "/1234567/example", googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL, ); googletag.pubads().addEventListener("gameManualInterstitialSlotClosed", (event) => { const slot = event.slot; console.log("Game manual interstital slot", slot.getSlotElementId(), "is closed."); if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
googletag.events.GameManualInterstitialSlotReadyEvent
擴充屬性 | |
---|---|
service | 觸發事件的服務名稱。 從 |
slot | 觸發事件的時間間隔。 從 |
方法 | |
---|---|
make | 向使用者顯示手動插頁式遊戲廣告。 |
- 範例
JavaScript
// This listener is called when a game manual interstitial slot is ready to // be displayed. const targetSlot = googletag.defineOutOfPageSlot( "/1234567/example", googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL, ); googletag.pubads().addEventListener("gameManualInterstitialSlotReady", (event) => { const slot = event.slot; console.log("Game manual interstital slot", slot.getSlotElementId(), "is ready to be displayed."); //Replace with custom logic. const displayGmiAd = true; if (displayGmiAd) { event.makeGameManualInterstitialVisible(); } if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when a game manual interstitial slot is ready to // be displayed. var targetSlot = googletag.defineOutOfPageSlot( "/1234567/example", googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL, ); googletag.pubads().addEventListener("gameManualInterstitialSlotReady", function (event) { var slot = event.slot; console.log("Game manual interstital slot", slot.getSlotElementId(), "is ready to be displayed."); //Replace with custom logic. var displayGmiAd = true; if (displayGmiAd) { event.makeGameManualInterstitialVisible(); } if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when a game manual interstitial slot is ready to // be displayed. const targetSlot = googletag.defineOutOfPageSlot( "/1234567/example", googletag.enums.OutOfPageFormat.GAME_MANUAL_INTERSTITIAL, ); googletag.pubads().addEventListener("gameManualInterstitialSlotReady", (event) => { const slot = event.slot; console.log("Game manual interstital slot", slot.getSlotElementId(), "is ready to be displayed."); //Replace with custom logic. const displayGmiAd = true; if (displayGmiAd) { event.makeGameManualInterstitialVisible(); } if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
方法
makeGameManualInterstitialVisible
googletag.events.ImpressionViewableEvent
擴充屬性 | |
---|---|
service | 觸發事件的服務名稱。 沿用自「 |
slot | 觸發事件的版位。 從 |
- 範例
JavaScript
// This listener is called when an impression becomes viewable. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("impressionViewable", (event) => { const slot = event.slot; console.log("Impression for slot", slot.getSlotElementId(), "became viewable."); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when an impression becomes viewable. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("impressionViewable", function (event) { var slot = event.slot; console.log("Impression for slot", slot.getSlotElementId(), "became viewable."); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when an impression becomes viewable. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("impressionViewable", (event) => { const slot = event.slot; console.log("Impression for slot", slot.getSlotElementId(), "became viewable."); if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
googletag.events.RewardedSlotClosedEvent
延長屬性 | |
---|---|
service | 觸發事件的服務名稱。 從 |
slot | 觸發事件的時間間隔。 從 |
- 範例
JavaScript
// This listener is called when the user closes a rewarded ad slot. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotClosed", (event) => { const slot = event.slot; console.log("Rewarded ad slot", slot.getSlotElementId(), "has been closed."); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when the user closes a rewarded ad slot. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotClosed", function (event) { var slot = event.slot; console.log("Rewarded ad slot", slot.getSlotElementId(), "has been closed."); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when the user closes a rewarded ad slot. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotClosed", (event) => { const slot = event.slot; console.log("Rewarded ad slot", slot.getSlotElementId(), "has been closed."); if (slot === targetSlot) { // Slot specific logic. } });
googletag.events.RewardedSlotGrantedEvent
延長屬性 | |
---|---|
payload | 包含已授予獎勵相關資訊的物件。 |
service | 觸發事件的服務名稱。 沿用自「 |
slot | 觸發事件的時間間隔。 從 |
- 範例
JavaScript
// This listener is called whenever a reward is granted for a // rewarded ad. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotGranted", (event) => { const slot = event.slot; console.group("Reward granted for slot", slot.getSlotElementId(), "."); // Log details of the reward. console.log("Reward type:", event.payload?.type); console.log("Reward amount:", event.payload?.amount); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called whenever a reward is granted for a // rewarded ad. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotGranted", function (event) { var _a, _b; var slot = event.slot; console.group("Reward granted for slot", slot.getSlotElementId(), "."); // Log details of the reward. console.log("Reward type:", (_a = event.payload) === null || _a === void 0 ? void 0 : _a.type); console.log( "Reward amount:", (_b = event.payload) === null || _b === void 0 ? void 0 : _b.amount, ); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called whenever a reward is granted for a // rewarded ad. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotGranted", (event) => { const slot = event.slot; console.group("Reward granted for slot", slot.getSlotElementId(), "."); // Log details of the reward. console.log("Reward type:", event.payload?.type); console.log("Reward amount:", event.payload?.amount); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
屬性
酬載
payload: null | RewardedPayload
包含已授予獎勵資訊的物件。
googletag.events.RewardedSlotReadyEvent
延長屬性 | |
---|---|
service | 觸發事件的服務名稱。 從 |
slot | 觸發事件的時間間隔。 從 |
方法 | |
---|---|
make | 顯示獎勵廣告。 |
- 範例
JavaScript
// This listener is called when a rewarded ad slot becomes ready to be // displayed. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotReady", (event) => { const slot = event.slot; console.log("Rewarded ad slot", slot.getSlotElementId(), "is ready to be displayed."); // Replace with custom logic. const userHasConsented = true; if (userHasConsented) { event.makeRewardedVisible(); } if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when a rewarded ad slot becomes ready to be // displayed. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotReady", function (event) { var slot = event.slot; console.log("Rewarded ad slot", slot.getSlotElementId(), "is ready to be displayed."); // Replace with custom logic. var userHasConsented = true; if (userHasConsented) { event.makeRewardedVisible(); } if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when a rewarded ad slot becomes ready to be // displayed. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("rewardedSlotReady", (event) => { const slot = event.slot; console.log("Rewarded ad slot", slot.getSlotElementId(), "is ready to be displayed."); // Replace with custom logic. const userHasConsented = true; if (userHasConsented) { event.makeRewardedVisible(); } if (slot === targetSlot) { // Slot specific logic. } });
方法
makeRewardedVisible
googletag.events.SlotOnloadEvent
擴充SlotOnloadEvent
。屬性 | |
---|---|
service | 觸發事件的服務名稱。 沿用自「 |
slot | 觸發事件的時間間隔。 從 |
- 範例
JavaScript
// This listener is called when a creative iframe load event fires. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotOnload", (event) => { const slot = event.slot; console.log("Creative iframe for slot", slot.getSlotElementId(), "has loaded."); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when a creative iframe load event fires. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotOnload", function (event) { var slot = event.slot; console.log("Creative iframe for slot", slot.getSlotElementId(), "has loaded."); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when a creative iframe load event fires. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotOnload", (event) => { const slot = event.slot; console.log("Creative iframe for slot", slot.getSlotElementId(), "has loaded."); if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
googletag.events.SlotRenderEndedEvent
擴充屬性 | |
---|---|
advertiser | 已顯示廣告的廣告主 ID。 |
campaign | 已顯示廣告的廣告活動 ID。 |
company | 對顯示的候補廣告出價的公司 ID。 |
creative | 已顯示預訂廣告的廣告素材 ID。 |
creative | 已算繪的預留廣告廣告素材範本 ID。 |
is | 廣告是否為候補廣告。 |
is | 指出版位是否已傳回廣告。 |
label | 已淘汰。 |
line | 已顯示預訂廣告的委刊項 ID。 |
service | 觸發事件的服務名稱。 從 |
size | 表示算繪廣告素材的像素大小。 |
slot | 觸發事件的版位。 沿用自「 |
slot | 是否已使用算繪廣告變更版位內容。 |
source | 所顯示預訂或候補廣告的廣告素材 ID。 |
source | 已算入預訂或候補廣告的委刊項 ID。 |
yield | 所顯示候補廣告的收益群組 ID。 |
- 範例
JavaScript
// This listener is called when a slot has finished rendering. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotRenderEnded", (event) => { const slot = event.slot; console.group("Slot", slot.getSlotElementId(), "finished rendering."); // Log details of the rendered ad. console.log("Advertiser ID:", event.advertiserId); console.log("Campaign ID:", event.campaignId); console.log("Company IDs:", event.companyIds); console.log("Creative ID:", event.creativeId); console.log("Creative Template ID:", event.creativeTemplateId); console.log("Is backfill?:", event.isBackfill); console.log("Is empty?:", event.isEmpty); console.log("Line Item ID:", event.lineItemId); console.log("Size:", event.size); console.log("Slot content changed?", event.slotContentChanged); console.log("Source Agnostic Creative ID:", event.sourceAgnosticCreativeId); console.log("Source Agnostic Line Item ID:", event.sourceAgnosticLineItemId); console.log("Yield Group IDs:", event.yieldGroupIds); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when a slot has finished rendering. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotRenderEnded", function (event) { var slot = event.slot; console.group("Slot", slot.getSlotElementId(), "finished rendering."); // Log details of the rendered ad. console.log("Advertiser ID:", event.advertiserId); console.log("Campaign ID:", event.campaignId); console.log("Company IDs:", event.companyIds); console.log("Creative ID:", event.creativeId); console.log("Creative Template ID:", event.creativeTemplateId); console.log("Is backfill?:", event.isBackfill); console.log("Is empty?:", event.isEmpty); console.log("Line Item ID:", event.lineItemId); console.log("Size:", event.size); console.log("Slot content changed?", event.slotContentChanged); console.log("Source Agnostic Creative ID:", event.sourceAgnosticCreativeId); console.log("Source Agnostic Line Item ID:", event.sourceAgnosticLineItemId); console.log("Yield Group IDs:", event.yieldGroupIds); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when a slot has finished rendering. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotRenderEnded", (event) => { const slot = event.slot; console.group("Slot", slot.getSlotElementId(), "finished rendering."); // Log details of the rendered ad. console.log("Advertiser ID:", event.advertiserId); console.log("Campaign ID:", event.campaignId); console.log("Company IDs:", event.companyIds); console.log("Creative ID:", event.creativeId); console.log("Creative Template ID:", event.creativeTemplateId); console.log("Is backfill?:", event.isBackfill); console.log("Is empty?:", event.isEmpty); console.log("Line Item ID:", event.lineItemId); console.log("Size:", event.size); console.log("Slot content changed?", event.slotContentChanged); console.log("Source Agnostic Creative ID:", event.sourceAgnosticCreativeId); console.log("Source Agnostic Line Item ID:", event.sourceAgnosticLineItemId); console.log("Yield Group IDs:", event.yieldGroupIds); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
屬性
advertiserId
advertiserId: null | number
已顯示廣告的廣告主 ID。如果版位、候補廣告和廣告素材是由 PubAdsService 以外的服務顯示,則值為 null
。
campaignId
campaignId: null | number
已轉譯廣告的廣告活動 ID。如果是空白版位、回補廣告,以及由 PubAdsService 以外的服務算繪的廣告素材,這個值為 null
。
companyIds
companyIds: null | number[]
對已顯示的廣告出價的公司 ID。如果版位、預訂廣告和廣告素材是由 PubAdsService 以外的服務顯示,則值為 null
。
creativeId
creativeId: null | number
顯示的預留廣告廣告素材 ID。如果是空白版位、回補廣告,以及由 PubAdsService 以外的服務算繪的廣告素材,這個值為 null
。
creativeTemplateId
creativeTemplateId: null | number
已算繪的預留廣告廣告素材範本 ID。如果是空白版位、回補廣告,以及由 PubAdsService 以外的服務算繪的廣告素材,這個值為 null
。
isBackfill
isBackfill: boolean
廣告是否為候補廣告。如果廣告是候補廣告,值為 true
;否則為 false
。
isEmpty
isEmpty: boolean
指出版位是否已傳回廣告。如果沒有傳回廣告,值為 true
,否則為 false
。
labelIds
labelIds: null | number[]
lineItemId
lineItemId: null | number
已算繪的預訂廣告委刊項 ID。如果版位、候補廣告和廣告素材是由 PubAdsService 以外的服務顯示,則值為 null
。
size [尺寸]
size: null | string | number[]
指出已顯示廣告素材的像素大小。範例:[728, 90]
。若廣告版位是空的,則值為 null
。
slotContentChanged
slotContentChanged: boolean
是否已使用算繪廣告變更版位內容。如果內容已變更,值為 true
;否則為 false
。
sourceAgnosticCreativeId
sourceAgnosticCreativeId: null | number
已算入保留空間或候補廣告的廣告素材 ID。如果廣告不是預訂或委刊項的後補廣告,或是廣告素材是由 PubAdsService 以外的服務算繪,則值為 null
。
sourceAgnosticLineItemId
sourceAgnosticLineItemId: null | number
已算入預訂或候補廣告的委刊項 ID。如果廣告不是預訂或委刊項的後補廣告,或是廣告素材是由 PubAdsService 以外的服務算繪,則值為 null
。
yieldGroupIds
yieldGroupIds: null | number[]
顯示的回補廣告收益群組 ID。如果是空白版位、預訂廣告,以及由 PubAdsService 以外的服務算繪的廣告素材,則值為 null
。
googletag.events.SlotRequestedEvent
擴充屬性 | |
---|---|
service | 觸發事件的服務名稱。 從 |
slot | 觸發事件的時間間隔。 從 |
- 範例
JavaScript
// This listener is called when the specified service issues an ad // request for a slot. Each slot will fire this event, even though they // may be batched together in a single request if single request // architecture (SRA) is enabled. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotRequested", (event) => { const slot = event.slot; console.log("Slot", slot.getSlotElementId(), "has been requested."); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when the specified service issues an ad // request for a slot. Each slot will fire this event, even though they // may be batched together in a single request if single request // architecture (SRA) is enabled. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotRequested", function (event) { var slot = event.slot; console.log("Slot", slot.getSlotElementId(), "has been requested."); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when the specified service issues an ad // request for a slot. Each slot will fire this event, even though they // may be batched together in a single request if single request // architecture (SRA) is enabled. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotRequested", (event) => { const slot = event.slot; console.log("Slot", slot.getSlotElementId(), "has been requested."); if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
googletag.events.SlotResponseReceived
擴充屬性 | |
---|---|
service | 觸發事件的服務名稱。 沿用自「 |
slot | 觸發事件的時間間隔。 從 |
- 範例
JavaScript
// This listener is called when an ad response has been received // for a slot. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotResponseReceived", (event) => { const slot = event.slot; console.log("Ad response for slot", slot.getSlotElementId(), "received."); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called when an ad response has been received // for a slot. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotResponseReceived", function (event) { var slot = event.slot; console.log("Ad response for slot", slot.getSlotElementId(), "received."); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called when an ad response has been received // for a slot. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotResponseReceived", (event) => { const slot = event.slot; console.log("Ad response for slot", slot.getSlotElementId(), "received."); if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
googletag.events.SlotVisibilityChangedEvent
擴充屬性 | |
---|---|
in | 可見廣告區域的百分比。 |
service | 觸發事件的服務名稱。 從 |
slot | 觸發事件的時間間隔。 從 |
- 範例
JavaScript
// This listener is called whenever the on-screen percentage of an // ad slot's area changes. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotVisibilityChanged", (event) => { const slot = event.slot; console.group("Visibility of slot", slot.getSlotElementId(), "changed."); // Log details of the event. console.log("Visible area:", `${event.inViewPercentage}%`); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
JavaScript (舊版)
// This listener is called whenever the on-screen percentage of an // ad slot's area changes. var targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotVisibilityChanged", function (event) { var slot = event.slot; console.group("Visibility of slot", slot.getSlotElementId(), "changed."); // Log details of the event. console.log("Visible area:", "".concat(event.inViewPercentage, "%")); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
TypeScript
// This listener is called whenever the on-screen percentage of an // ad slot's area changes. const targetSlot = googletag.defineSlot("/1234567/example", [160, 600]); googletag.pubads().addEventListener("slotVisibilityChanged", (event) => { const slot = event.slot; console.group("Visibility of slot", slot.getSlotElementId(), "changed."); // Log details of the event. console.log("Visible area:", `${event.inViewPercentage}%`); console.groupEnd(); if (slot === targetSlot) { // Slot specific logic. } });
- 另請參閱
屬性
inViewPercentage
inViewPercentage: number
可見廣告區域的百分比。這個值是介於 0 到 100 之間的數字。
googletag.secureSignals
介面 | |
---|---|
Bidder | 傳回特定出價方的安全信號。 |
Publisher | 傳回特定發布商的安全信號。 |
Secure | 用於管理安全信號的介面。 |
型別別名 | |
---|---|
Secure | 針對特定出價方或供應商傳回安全信號的介面。 |
型別別名
SecureSignalProvider
SecureSignalProvider: BidderSignalProvider | PublisherSignalProvider
此介面可針對特定出價方或供應商傳回安全信號。必須提供 id
或 networkCode
其中一個,但不能兩者都提供。
googletag.secureSignals.BidderSignalProvider
出價方安全信號供應器包含 2 個部分:
- 收集器函式,會傳回可解析為安全信號的
Promise
。 id
:用於識別與信號相關聯的出價方。
屬性 | |
---|---|
collector | 此函式會傳回可解析為安全信號的 Promise 。 |
id | 與這個安全信號相關聯的收集器專屬 ID,已在 Google Ad Manager 中註冊。 |
- 範例
JavaScript
// id is provided googletag.secureSignalProviders.push({ id: "collector123", collectorFunction: () => { // ...custom signal generation logic... return Promise.resolve("signal"); }, });
JavaScript (舊版)
// id is provided googletag.secureSignalProviders.push({ id: "collector123", collectorFunction: function () { // ...custom signal generation logic... return Promise.resolve("signal"); }, });
TypeScript
// id is provided googletag.secureSignalProviders!.push({ id: "collector123", collectorFunction: () => { // ...custom signal generation logic... return Promise.resolve("signal"); }, });
- 另請參閱
屬性
collectorFunction
collectorFunction: (() => Promise<string>)
這個函式會傳回 Promise
,並將其解析為安全信號。
id
id: string
與這個安全信號相關聯的收集器專屬 ID,已在 Google Ad Manager 中註冊。
googletag.secureSignals.PublisherSignalProvider
發布商信號供應者包含 2 個部分:
- 收集器函式,會傳回可解析為安全信號的
Promise
。 networkCode
:識別與信號相關聯的發布商。
屬性 | |
---|---|
collector | 此函式會傳回可解析為安全信號的 Promise 。 |
network | 與這個安全信號相關聯的發布商網路代碼 (如廣告單元路徑所示)。 |
- 範例
JavaScript
// networkCode is provided googletag.secureSignalProviders.push({ networkCode: "123456", collectorFunction: () => { // ...custom signal generation logic... return Promise.resolve("signal"); }, });
JavaScript (舊版)
// networkCode is provided googletag.secureSignalProviders.push({ networkCode: "123456", collectorFunction: function () { // ...custom signal generation logic... return Promise.resolve("signal"); }, });
TypeScript
// networkCode is provided googletag.secureSignalProviders!.push({ networkCode: "123456", collectorFunction: () => { // ...custom signal generation logic... return Promise.resolve("signal"); }, });
- 另請參閱
屬性
collectorFunction
collectorFunction: (() => Promise<string>)
此函式會傳回可解析為安全信號的 Promise
。
networkCode
networkCode: string
與這個安全信號相關聯的發布商網路代碼 (如廣告單元路徑所示)。
googletag.secureSignals.SecureSignalProvidersArray
方法 | |
---|---|
clear | 從快取中清除所有收集器的信號。 |
push | 將新的 secureSignals.SecureSignalProvider 新增至信號供應器陣列,並開始信號產生程序。 |
方法
clearAllCache
push
push(provider: SecureSignalProvider): void
將新的 secureSignals.SecureSignalProvider 新增至信號提供者陣列,然後開始信號產生程序。
參數 | |
---|---|
provider: SecureSignalProvider | 要新增至陣列的 secureSignals.SecureSignalProvider 物件。 |