광고 태그 라이브러리 스크립트가 안전하게 요청되는지 확인합니다. 이것은 뿐만 아니라
사용자를 위해 더 나은 보안을 제공할 뿐만 아니라 성능도 향상됩니다. 광고 이후
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>
[[["이해하기 쉬움","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"]],["최종 업데이트: 2024-08-22(UTC)"],[],[]]