通过 HTTPS 加载广告代码
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
概览
确保安全地请求广告代码库脚本。这不仅
为用户提供了更好的安全性,并改善了性能。自广告以来
GPT 发出的请求始终使用 HTTPS
推荐的主机 ,这样可确保
对于与广告投放相关的所有请求,浏览器只需要打开 1 个连接。
注意 :应该只在不安全的网站上执行此操作,否则大多数安全网站
使用 HTTPS 自动加载脚本。
建议
始终从 HTTPS 网址加载广告代码脚本。
不正确
<script>
var el = document.createElement('script');
// Incorrect: potentially loading the ad tag over HTTP.
var useSSL = 'https:' == document.location.protocol;
el.src = (useSSL ? 'https:' : 'http:') + '//securepubads.g.doubleclick.net/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(el, node);
</script>
正确
<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
支持以下广告代码库脚本:
库
脚本
AdSense
pagead2.googlesyndication.com/pagead/js/adsbygoogle.js
pagead2.googlesyndication.com/pagead/show_ads.js
Google 发布商代码
googletagservices.com/tag/js/gpt.js
securepubads.g.doubleclick.net/tag/js/gpt.js
Google 发布商代码使用入门
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可 获得了许可,并且代码示例已根据 Apache 2.0 许可 获得了许可。有关详情,请参阅 Google 开发者网站政策 。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-22。
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2024-08-22。"],[],[]]