รายการคีย์เวิร์ดเชิงลบ
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
รับรายการคีย์เวิร์ดเชิงลบตามชื่อ
function getNegativeKeywordList(name) { const negativeKeywordLists = AdsApp.negativeKeywordLists() .withCondition(`shared_set.name = "${name}"`) .get(); if (!negativeKeywordLists.hasNext()) { throw new Error(`Cannot find negative keyword list with name "${name}"`); } return negativeKeywordLists.next(); }
สร้างรายการคีย์เวิร์ดเชิงลบใหม่และพิ่มลงในแคมเปญ
function addNegativeKeywordListToCampaign(campaignName, negativeKeywordListName) { const negativeKeywordLists = AdsApp.negativeKeywordLists() .withCondition(`shared_set.name = "${negativeKeywordListName}"`) .get(); if (!negativeKeywordLists.hasNext()) { throw new Error(`Cannot find negative keyword list with name "${negativeKeywordListName}"`); } const negativeKeywordList = negativeKeywordLists.next(); const campaigns = AdsApp.campaigns() .withCondition(`campaign.name = "${campaignName}"`) .get(); if (!campaigns.hasNext()) { throw new Error(`Cannot find campaign with the name "${campaignName}"`); } const campaign = campaigns.next(); campaign.addNegativeKeywordList(negativeKeywordList); }
ลบคีย์เวิร์ดเชิงลบที่แชร์ทั้งหมดในรายการคีย์เวิร์ดเชิงลบ
function removeAllNegativeKeywordsFromList(name) { const negativeKeywordLists = AdsApp.negativeKeywordLists() .withCondition(`shared_set.name = "${name}"`) .get(); if (!negativeKeywordLists.hasNext()) { throw new Error(`Cannot find negative keyword list with name "${name}"`); } const negativeKeywordList = negativeKeywordLists.next(); for (const negativeKeyword of negativeKeywordList.negativeKeywords()) { negativeKeyword.remove(); } }
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-28 UTC
[[["เข้าใจง่าย","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"]],["อัปเดตล่าสุด 2025-07-28 UTC"],[[["These Google Ads scripts provide functions to manage negative keyword lists, including retrieving a list by name, adding a list to a campaign, and removing all negative keywords from a list."],["The `getNegativeKeywordList` function retrieves an existing negative keyword list using its name and throws an error if not found."],["The `addNegativeKeywordListToCampaign` function associates an existing negative keyword list with a specific campaign, also throwing an error if either the list or campaign is not found."],["The `removeAllNegativeKeywordsFromList` function removes all negative keywords within a specified negative keyword list, throwing an error if the list is not found."]]],[]]