HTTP/2 200
content-type: text/html; charset=UTF-8
content-length: 4275
date: Sun, 13 Jul 2025 07:39:34 GMT
vary: Accept-Encoding
content-encoding: gzip
cache-control: private, no-cache, must-revalidate
pragma: no-cache
accept-ch: Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-Platform-Version, Sec-CH-UA-Arch
permissions-policy: ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-platform-version=*, ch-ua-arch=*
permissions-policy: unload=()
x-content-type-options: nosniff
x-frame-options: SAMEORIGIN
x-xss-protection: 1; mode=block
set-cookie: A=8hbfqvpk76olm&sd=A&t=1752392374&u=1752392374&v=1; expires=Mon, 13 Jul 2026 07:39:34 GMT; domain=.yahoo.co.jp; path=/; httponly; secure
set-cookie: XA=8hbfqvpk76olm&sd=A&t=1752392374&u=1752392374&v=1; expires=Mon, 13 Jul 2026 07:39:34 GMT; domain=.yahoo.co.jp; path=/; httponly; secure; samesite=none
set-cookie: B=85ae29bc-5fbc-11f0-80a8-0f5f7317e50f&v=6&u=1752392374&s=pa; expires=Wed, 14 Jul 2027 07:39:34 GMT; path=/; domain=.yahoo.co.jp; secure
set-cookie: XB=85ae29bc-5fbc-11f0-80a8-0f5f7317e50f&v=6&u=1752392374&s=pa; expires=Wed, 14 Jul 2027 07:39:34 GMT; path=/; domain=.yahoo.co.jp; secure; samesite=none
コンテンツキーワードリスト │ Yahoo!広告 スクリプト │ Developer Center - Yahoo!広告
コンテンツキーワードリスト
・コンテンツキーワードリストの情報を取得する
コンテンツキーワードリストの情報を取得する
function main() {
const accountId = AdsUtilities.getCurrentAccountId();
const contentKeyword = Display.ContentsKeywordListService.get({
accountId: accountId
}).rval;
if (contentKeyword.totalNumEntries == 0) {
Logger.log('ContentsKeywordList does not exist.');
return;
}
for (let i = 0; i < contentKeyword.values.length; i++) {
let contentsKeywordList = contentKeyword.values[i].contentsKeywordList;
Logger.log('contentsKeywordListId-> ' + contentsKeywordList.contentsKeywordListId
+ ', contentsKeywordListName-> ' + contentsKeywordList.contentsKeywordListName);
}
}