پارامترهای تبلیغات
با مجموعهها، منظم بمانید
ذخیره و دستهبندی محتوا براساس اولویتهای شما.
تبلیغات متنی با پارامترهای تبلیغاتی برای یک گروه تبلیغاتی ایجاد کنید
function setupAdParamsInAdGroup(adGroupName) {
// If you have multiple adGroups with the same name, this snippet will
// pick an arbitrary matching ad group each time. In such cases, just
// filter on the campaign name as well:
//
// AdsApp.adGroups()
// .withCondition('ad_group.name = "INSERT_ADGROUP_NAME_HERE"')
// .withCondition('campaign.name = "INSERT_CAMPAIGN_NAME_HERE"')
const adGroupIterator = AdsApp.adGroups()
.withCondition(`ad_group.name = "${adGroupName}"`)
.get();
if (!adGroupIterator.hasNext()) {
throw new Error(`No ad group with name "${adGroupName} found`);
}
const adGroup = adGroupIterator.next();
adGroup.newAd().expandedTextAdBuilder()
.withHeadlinePart1('Holiday sale')
.withHeadlinePart2(
'Starts in {param1: a few} days {param2: and} hours!')
.withDescription('Everything must go!')
.withFinalUrl('http://www.example.com/holidaysales')
.build();
const keywordIterator = adGroup.keywords().get();
if (!keywordIterator.hasNext()) {
console.log(`No keywords found in ad group ${adGroupName}.`);
} else {
const keyword = keywordIterator.next();
// Setup Ad to show as 'Doors open in 5 days, 7 hours!' when searched
// using this keyword. If the ad is triggered using a keyword
// without ad param, the ad shows as
// 'Doors open in a few days, and hours!'
keyword.setAdParam(1, 5);
keyword.setAdParam(2, 7);
}
}
دریافت پارامترهای تبلیغاتی برای یک کلمه کلیدی
function getAdParamsForKeyword(adGroupName) {
// If you have multiple adGroups with the same name, this snippet will
// pick an arbitrary matching ad group each time. In such cases, just
// filter on the campaign name as well:
//
// AdsApp.adGroups()
// .withCondition('ad_group.name = "INSERT_ADGROUP_NAME_HERE"')
// .withCondition('campaign.name = "INSERT_CAMPAIGN_NAME_HERE"')
const adGroupIterator = AdsApp.adGroups()
.withCondition(`ad_group.name = "${adGroupName}"`)
.get();
if (!adGroupIterator.hasNext()) {
throw new Error(`No ad group with name "${adGroupName} found`);
}
const adGroup = adGroupIterator.next();
const keywordIterator = adGroup.keywords()
.withCondition('ad_group_criterion.keyword.text = "Holiday sales"')
.get();
if (!keywordIterator.hasNext()) {
console.log(`No keywords found in ad group ${adGroupName}.`);
} else {
const keyword = keywordIterator.next();
const adParamIterator = keyword.adParams().get();
for (const adParam of adParamIterator) {
logAdParam(adParam);
}
}
}
function logAdParam(adParam) {
console.log('Keyword : ' + adParam.getKeyword().getText());
console.log('MatchType : ' + adParam.getKeyword().getMatchType());
console.log('Index : ' + adParam.getIndex());
console.log('Insertion Text : ' + adParam.getInsertionText());
}
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2024-11-11 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","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-11-11 بهوقت ساعت هماهنگ جهانی."],[],[]]