本参考文档使用 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 | 槽的有效尺寸配置,可以是 1 种或多种尺寸。 |
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
槽的有效尺寸配置,可以是 1 种或多种尺寸。
MultiSize
MultiSize: SingleSize[]
单个有效尺寸的列表。
NamedSize
- fluid:广告容器会占用父 div 的 100% 宽度,然后调整高度以适应广告素材内容。类似于网页上的常规块元素的行为方式。用于原生广告(请参阅相关文章)。请注意,
fluid
和['fluid']
均可用于将槽大小声明为流体。
NamedSize: "fluid" | ["fluid"]
广告位可以采用的已命名尺寸。在大多数情况下,尺寸是固定大小的矩形,但在某些情况下,我们需要其他类型的尺寸规范。以下是有效的命名尺寸:
SingleSize
SingleSize: SingleSizeArray | NamedSize
广告位的单个有效尺寸。
SingleSizeArray
SingleSizeArray: [number, number]
由两个数字组成的数组,代表 [宽度, 高度]。
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 对象,其 push 方法定义为执行传递给它的函数实参。借助此机制,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 的 ID。 |
返回 | |
---|---|
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 的 ID。 |
返回 | |
---|---|
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 维护的内部状态中移除广告位对象。对 slot 对象调用更多函数将导致未定义的行为。请注意,如果发布商页面维护了对该槽的引用,浏览器可能仍不会释放与该槽关联的内存。调用此 API 可使与该广告位关联的 div 可供重复使用。
具体而言,销毁广告位会从 GPT 的长期有效的网页浏览中移除广告,这样以后的请求就不会受到涉及此广告的包版或竞争排除规则的影响。如果未在从页面中移除槽的 div 之前调用此函数,则会导致未定义的行为。
参数 | |
---|---|
| 要销毁的槽数组。数组是可选项;如果未指定,则所有槽都会被销毁。 |
返回 | |
---|---|
boolean | 如果槽位已被销毁,则为 true ;否则为 false 。 |
disablePublisherConsole
展示广告
display(divOrSlot: string | Element | Slot): void
指示槽服务呈现槽。每个广告位在每个网页上都应仅展示一次。所有槽都必须先定义并与服务相关联,然后才能显示。在该元素出现在 DOM 中之前,不得执行 display 调用。通常,实现此目的的方法是将其放置在方法调用中命名的 div 元素内的脚本块中。
如果使用的是单一请求架构 (SRA),则系统会在调用此方法时立即提取所有未提取的广告位。若要强制不显示广告展示位置,必须移除整个 div。
参数 | |
---|---|
divOrSlot: string | Element | Slot | 包含广告展示位置的 div 元素的 ID,或者 div 元素或广告展示位置对象。如果提供了 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 TCF v2.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 | 更改随广告请求一起发送的 Correlator,从而有效地开始新的网页浏览。 |
方法
清除
- 示例
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,以便对展示广告使用内容排除功能。
获取
- 示例
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
为网页上的特定广告位或所有广告位提取并显示新广告。仅适用于异步呈现模式。
为了确保所有浏览器上都能正常展示,在调用 refresh
之前,必须先调用 display
广告位。如果省略对 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
(在广告位级或网页级),无论在 Google Ad Manager 界面中做出的选择,广告始终会使用 SafeFrame 容器呈现。 - 不过,如果将其设置为
false
或未指定,系统将使用 SafeFrame 容器呈现广告,具体取决于广告素材的类型和 Google Ad Manager 界面中所做的选择。 - 请谨慎使用此 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 以强制在 SafeFrames 中呈现网页上的所有广告,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
更改随广告请求一起发送的协调 ID,从而有效地开始新的网页浏览。对于来自同一次网页浏览的所有广告请求,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 | 奖励中包含的项的类型(例如“coin”)。 |
- 另请参阅
属性
金额
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?: boolean
SafeFrame 是否应使用 HTML5 沙盒属性来阻止无用户互动的顶层导航。唯一的有效值为 true
(无法强制设为 false
)。请注意,沙盒属性会停用插件(例如 Flash)。
Optional
useUniqueDomain
useUniqueDomain?: null | boolean
SafeFrame 是否应为预订型广告素材使用随机子网域。传入 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 | 此构建器构建的结果。如果提供了无效的尺寸映射,可以为 null。 |
googletag.Slot
方法 | |
---|---|
add | 将 Service 添加到该槽。 |
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 对象中的键值对映射,为此广告位设置自定义定位参数。 |
方法
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[] | 定位键数组。顺序未定义。 |
设置
- 示例
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 | 调用方法的 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 | 是否在未返回任何广告时收起广告位。 |
| 是否在获取广告之前收起广告位。如果 collapse 不为 true ,则会被忽略。 |
返回 | |
---|---|
Slot | 调用方法的槽对象。 |
setConfig
setConfig(slotConfig: SlotSettingsConfig): void
设置此槽的常规配置选项。
参数 | |
---|---|
slotConfig: SlotSettingsConfig | 配置对象。 |
setForceSafeFrame
- 此设置只会对相应广告位发出的后续广告请求生效。
- 广告位级设置(如果指定)始终会替换网页级设置。
- 如果设为
true
(在广告位级或网页级),无论在 Google Ad Manager 界面中做出的选择,广告始终会使用 SafeFrame 容器呈现。 - 不过,如果将其设置为
false
或未指定,系统将使用 SafeFrame 容器呈现广告,具体取决于广告素材的类型和 Google Ad Manager 界面中所做的选择。 - 请谨慎使用此 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 | 调用方法的 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 对象中的键值对映射,为此广告位设置自定义定位参数。这与针对对象的所有键值调用 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
触发器
- 示例
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?: InterstitialConfig
用于控制插页式广告位行为的设置。
googletag.config.TaxonomyData
属性 | |
---|---|
values | 分类值列表。 |
属性
值
values: string[]
分类值的列表。
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 触发其 load 事件时,系统会触发此事件。 |
Slot | 在广告素材代码注入到槽中时,系统会触发此事件。 |
Slot | 在为特定广告位请求广告时,系统会触发此事件。 |
Slot | 当系统收到特定广告位对应的广告响应时,系统会触发此事件。 |
Slot | 每当广告位区域在屏幕上的比例发生变化时,就会触发此事件。 |
googletag.events.Event
属性 | |
---|---|
service | 触发事件的服务的名称。 |
slot | 触发事件的槽。 |
- 另请参阅
属性
serviceName
serviceName: string
触发事件的服务的名称。
槽
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 | 与此安全信号关联的收集器的唯一标识符(已在 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
与此安全信号关联的收集器的唯一标识符(已在 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 对象。 |