HTTPS를 통해 광고 태그 로드

개요

광고 태그 라이브러리 스크립트가 안전하게 요청되는지 확인합니다. 이것은 뿐만 아니라 사용자를 위해 더 나은 보안을 제공할 뿐만 아니라 성능도 향상됩니다. 광고 이후 GPT에서 발행한 요청은 항상 HTTPS를 사용하므로 HTTPS를 통한 권장 호스트는 사용자가 브라우저는 광고 게재와 관련된 모든 요청에 대해 하나의 연결만 열면 됩니다.

권장사항

항상 HTTPS URL에서 광고 태그 스크립트를 로드합니다.

올바르지 않음
<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>

추가 정보

다음과 같은 광고 태그 라이브러리 스크립트가 지원됩니다.

라이브러리 스크립트
애드센스

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 게시자 태그 시작하기