google-adwords-api 0.18.0 → 0.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ChangeLog +8 -0
- data/examples/v201509/basic_operations/add_ad_groups.rb +4 -2
- data/examples/v201509/remarketing/add_crm_based_user_list.rb +2 -4
- data/examples/v201509/{advanced_operations → remarketing}/upload_offline_conversions.rb +6 -21
- data/examples/v201601/account_management/create_account.rb +88 -0
- data/examples/v201601/account_management/get_account_changes.rb +139 -0
- data/examples/v201601/account_management/get_account_hierarchy.rb +132 -0
- data/examples/v201601/advanced_operations/add_ad_customizers.rb +184 -0
- data/examples/v201601/advanced_operations/add_ad_group_bid_modifier.rb +101 -0
- data/examples/v201601/advanced_operations/add_click_to_download_ad.rb +133 -0
- data/examples/v201601/advanced_operations/add_html5_ad.rb +137 -0
- data/examples/v201601/advanced_operations/add_keywords_using_incremental_batch_job.rb +179 -0
- data/examples/v201601/advanced_operations/add_text_ad_with_upgraded_urls.rb +134 -0
- data/examples/v201601/advanced_operations/create_and_attach_shared_keyword_set.rb +141 -0
- data/examples/v201601/advanced_operations/find_and_remove_criteria_from_shared_set.rb +174 -0
- data/examples/v201601/advanced_operations/get_ad_group_bid_modifiers.rb +102 -0
- data/examples/v201601/advanced_operations/use_shared_bidding_strategy.rb +147 -0
- data/examples/v201601/basic_operations/add_ad_groups.rb +142 -0
- data/examples/v201601/basic_operations/add_campaigns.rb +139 -0
- data/examples/v201601/basic_operations/add_keywords.rb +114 -0
- data/examples/v201601/basic_operations/add_text_ads.rb +109 -0
- data/examples/v201601/basic_operations/get_ad_groups.rb +102 -0
- data/examples/v201601/basic_operations/get_campaigns.rb +97 -0
- data/examples/v201601/basic_operations/get_campaigns_with_awql.rb +89 -0
- data/examples/v201601/basic_operations/get_keywords.rb +109 -0
- data/examples/v201601/basic_operations/get_text_ads.rb +110 -0
- data/examples/v201601/basic_operations/pause_ad.rb +88 -0
- data/examples/v201601/basic_operations/remove_ad.rb +89 -0
- data/examples/v201601/basic_operations/remove_ad_group.rb +85 -0
- data/examples/v201601/basic_operations/remove_campaign.rb +87 -0
- data/examples/v201601/basic_operations/remove_keyword.rb +94 -0
- data/examples/v201601/basic_operations/update_ad_group.rb +85 -0
- data/examples/v201601/basic_operations/update_campaign.rb +86 -0
- data/examples/v201601/basic_operations/update_keyword.rb +106 -0
- data/examples/v201601/campaign_management/add_campaign_labels.rb +82 -0
- data/examples/v201601/campaign_management/add_complete_campaigns_using_batch_job.rb +356 -0
- data/examples/v201601/campaign_management/add_experiment.rb +162 -0
- data/examples/v201601/campaign_management/add_keywords_in_bulk.rb +153 -0
- data/examples/v201601/campaign_management/get_all_disapproved_ads.rb +97 -0
- data/examples/v201601/campaign_management/get_all_disapproved_ads_with_awql.rb +89 -0
- data/examples/v201601/campaign_management/get_campaigns_by_label.rb +108 -0
- data/examples/v201601/campaign_management/promote_experiment.rb +81 -0
- data/examples/v201601/campaign_management/set_ad_parameters.rb +118 -0
- data/examples/v201601/campaign_management/set_criterion_bid_modifier.rb +104 -0
- data/examples/v201601/campaign_management/validate_text_ad.rb +110 -0
- data/examples/v201601/error_handling/handle_partial_failures.rb +130 -0
- data/examples/v201601/error_handling/handle_policy_violation_error.rb +141 -0
- data/examples/v201601/extensions/add_google_my_business_location_extensions.rb +193 -0
- data/examples/v201601/extensions/add_site_links.rb +164 -0
- data/examples/v201601/extensions/add_site_links_using_feeds.rb +281 -0
- data/examples/v201601/migration/migrate_to_extension_settings.rb +386 -0
- data/examples/v201601/migration/upgrade_ad_url.rb +93 -0
- data/examples/v201601/misc/get_all_images_and_videos.rb +104 -0
- data/examples/v201601/misc/setup_oauth2.rb +84 -0
- data/examples/v201601/misc/upload_image.rb +93 -0
- data/examples/v201601/misc/upload_media_bundle.rb +90 -0
- data/examples/v201601/misc/use_oauth2_jwt.rb +93 -0
- data/examples/v201601/misc/use_runtime_config.rb +92 -0
- data/examples/v201601/optimization/estimate_keyword_traffic.rb +146 -0
- data/examples/v201601/optimization/get_keyword_bid_simulations.rb +95 -0
- data/examples/v201601/optimization/get_keyword_ideas.rb +126 -0
- data/examples/v201601/remarketing/add_audience.rb +118 -0
- data/examples/v201601/remarketing/add_conversion_tracker.rb +97 -0
- data/examples/v201601/remarketing/add_crm_based_user_list.rb +119 -0
- data/examples/v201601/remarketing/add_rule_based_user_lists.rb +167 -0
- data/examples/v201601/remarketing/upload_offline_conversions.rb +98 -0
- data/examples/v201601/reporting/download_criteria_report.rb +92 -0
- data/examples/v201601/reporting/download_criteria_report_with_awql.rb +93 -0
- data/examples/v201601/reporting/get_report_fields.rb +75 -0
- data/examples/v201601/reporting/parallel_report_download.rb +166 -0
- data/examples/v201601/reporting/stream_criteria_report_results.rb +97 -0
- data/examples/v201601/shopping_campaigns/add_product_partition_tree.rb +267 -0
- data/examples/v201601/shopping_campaigns/add_product_scope.rb +129 -0
- data/examples/v201601/shopping_campaigns/add_shopping_campaign.rb +129 -0
- data/examples/v201601/shopping_campaigns/get_product_category_taxonomy.rb +115 -0
- data/examples/v201601/targeting/add_campaign_targeting_criteria.rb +180 -0
- data/examples/v201601/targeting/add_demographic_targeting_criteria.rb +112 -0
- data/examples/v201601/targeting/get_campaign_targeting_criteria.rb +106 -0
- data/examples/v201601/targeting/get_targetable_languages_and_carriers.rb +89 -0
- data/examples/v201601/targeting/lookup_location.rb +108 -0
- data/lib/adwords_api/api_config.rb +90 -4
- data/lib/adwords_api/batch_job_utils.rb +29 -17
- data/lib/adwords_api/incremental_upload_helper.rb +5 -1
- data/lib/adwords_api/report_stream.rb +7 -8
- data/lib/adwords_api/report_utils.rb +4 -4
- data/lib/adwords_api/v201601/account_label_service.rb +46 -0
- data/lib/adwords_api/v201601/account_label_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_customizer_feed_service.rb +46 -0
- data/lib/adwords_api/v201601/ad_customizer_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_group_ad_service.rb +70 -0
- data/lib/adwords_api/v201601/ad_group_ad_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_group_bid_modifier_service.rb +54 -0
- data/lib/adwords_api/v201601/ad_group_bid_modifier_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_group_criterion_service.rb +62 -0
- data/lib/adwords_api/v201601/ad_group_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_group_extension_setting_service.rb +54 -0
- data/lib/adwords_api/v201601/ad_group_extension_setting_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_group_feed_service.rb +54 -0
- data/lib/adwords_api/v201601/ad_group_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_group_service.rb +62 -0
- data/lib/adwords_api/v201601/ad_group_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/ad_param_service.rb +46 -0
- data/lib/adwords_api/v201601/ad_param_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/adwords_user_list_service.rb +54 -0
- data/lib/adwords_api/v201601/adwords_user_list_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/batch_job_service.rb +54 -0
- data/lib/adwords_api/v201601/batch_job_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/bidding_strategy_service.rb +54 -0
- data/lib/adwords_api/v201601/bidding_strategy_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/budget_order_service.rb +54 -0
- data/lib/adwords_api/v201601/budget_order_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/budget_service.rb +54 -0
- data/lib/adwords_api/v201601/budget_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/campaign_criterion_service.rb +54 -0
- data/lib/adwords_api/v201601/campaign_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/campaign_extension_setting_service.rb +54 -0
- data/lib/adwords_api/v201601/campaign_extension_setting_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/campaign_feed_service.rb +54 -0
- data/lib/adwords_api/v201601/campaign_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/campaign_service.rb +62 -0
- data/lib/adwords_api/v201601/campaign_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/campaign_shared_set_service.rb +54 -0
- data/lib/adwords_api/v201601/campaign_shared_set_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/constant_data_service.rb +110 -0
- data/lib/adwords_api/v201601/constant_data_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/conversion_tracker_service.rb +54 -0
- data/lib/adwords_api/v201601/conversion_tracker_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/customer_extension_setting_service.rb +54 -0
- data/lib/adwords_api/v201601/customer_extension_setting_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/customer_feed_service.rb +54 -0
- data/lib/adwords_api/v201601/customer_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/customer_service.rb +54 -0
- data/lib/adwords_api/v201601/customer_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/customer_sync_service.rb +38 -0
- data/lib/adwords_api/v201601/customer_sync_service_registry.rb +47 -0
- data/lib/adwords_api/v201601/data_service.rb +78 -0
- data/lib/adwords_api/v201601/data_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/experiment_service.rb +46 -0
- data/lib/adwords_api/v201601/experiment_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/feed_item_service.rb +54 -0
- data/lib/adwords_api/v201601/feed_item_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/feed_mapping_service.rb +54 -0
- data/lib/adwords_api/v201601/feed_mapping_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/feed_service.rb +54 -0
- data/lib/adwords_api/v201601/feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/label_service.rb +54 -0
- data/lib/adwords_api/v201601/label_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/location_criterion_service.rb +46 -0
- data/lib/adwords_api/v201601/location_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/managed_customer_service.rb +78 -0
- data/lib/adwords_api/v201601/managed_customer_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/media_service.rb +54 -0
- data/lib/adwords_api/v201601/media_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/mutate_job_service.rb +54 -0
- data/lib/adwords_api/v201601/mutate_job_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/offline_conversion_feed_service.rb +38 -0
- data/lib/adwords_api/v201601/offline_conversion_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/report_definition_service.rb +38 -0
- data/lib/adwords_api/v201601/report_definition_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/shared_criterion_service.rb +54 -0
- data/lib/adwords_api/v201601/shared_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/shared_set_service.rb +54 -0
- data/lib/adwords_api/v201601/shared_set_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/targeting_idea_service.rb +38 -0
- data/lib/adwords_api/v201601/targeting_idea_service_registry.rb +46 -0
- data/lib/adwords_api/v201601/traffic_estimator_service.rb +38 -0
- data/lib/adwords_api/v201601/traffic_estimator_service_registry.rb +46 -0
- data/lib/adwords_api/version.rb +1 -1
- data/test/adwords_api/test_batch_job_utils.rb +11 -2
- metadata +163 -5
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# Encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# Copyright:: Copyright 2015, Google Inc. All Rights Reserved.
|
|
5
|
+
#
|
|
6
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
+
# implied.
|
|
16
|
+
# See the License for the specific language governing permissions and
|
|
17
|
+
# limitations under the License.
|
|
18
|
+
#
|
|
19
|
+
# This example illustrates how to perform multiple requests using the
|
|
20
|
+
# BatchJobService using incremental uploads.
|
|
21
|
+
|
|
22
|
+
require 'adwords_api'
|
|
23
|
+
|
|
24
|
+
def add_keywords_using_incremental_batch_job(ad_group_id)
|
|
25
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
|
26
|
+
# when called without parameters.
|
|
27
|
+
adwords = AdwordsApi::Api.new
|
|
28
|
+
|
|
29
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
30
|
+
# the configuration file or provide your own logger:
|
|
31
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
|
32
|
+
|
|
33
|
+
batch_job_srv = adwords.service(:BatchJobService, API_VERSION)
|
|
34
|
+
batch_job_utils = adwords.batch_job_utils(API_VERSION)
|
|
35
|
+
|
|
36
|
+
# Create a BatchJob.
|
|
37
|
+
add_op = {
|
|
38
|
+
:operator => 'ADD',
|
|
39
|
+
:operand => {}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
response = batch_job_srv.mutate([add_op])
|
|
43
|
+
batch_job = response[:value].first
|
|
44
|
+
|
|
45
|
+
# Get the upload URL from the new job.
|
|
46
|
+
upload_url = batch_job[:upload_url][:url]
|
|
47
|
+
puts "Created BatchJob with ID %d, status '%s', and upload URL %s." %
|
|
48
|
+
[batch_job[:id], batch_job[:status], upload_url]
|
|
49
|
+
|
|
50
|
+
# Upload #1
|
|
51
|
+
incremental_helper = batch_job_utils.start_incremental_upload(upload_url)
|
|
52
|
+
operations = create_keyword_operations(ad_group_id)
|
|
53
|
+
incremental_helper.upload(operations)
|
|
54
|
+
|
|
55
|
+
# Upload #2
|
|
56
|
+
operations = create_keyword_operations(ad_group_id)
|
|
57
|
+
incremental_helper.upload(operations)
|
|
58
|
+
|
|
59
|
+
# Upload #3
|
|
60
|
+
operations = create_keyword_operations(ad_group_id)
|
|
61
|
+
incremental_helper.upload(operations, true)
|
|
62
|
+
|
|
63
|
+
# Poll for completion of the batch job using an exponential back off.
|
|
64
|
+
poll_attempts = 0
|
|
65
|
+
is_pending = true
|
|
66
|
+
selector = {
|
|
67
|
+
:fields =>
|
|
68
|
+
['Id', 'Status', 'DownloadUrl', 'ProcessingErrors', 'ProgressStats'],
|
|
69
|
+
:predicates => [{
|
|
70
|
+
:field => 'Id',
|
|
71
|
+
:operator => 'IN',
|
|
72
|
+
:values => [batch_job[:id]]
|
|
73
|
+
}]
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
begin
|
|
77
|
+
sleep_seconds = 30 * (2 ** poll_attempts)
|
|
78
|
+
puts "Sleeping for %d seconds" % sleep_seconds
|
|
79
|
+
sleep(sleep_seconds)
|
|
80
|
+
|
|
81
|
+
batch_job = batch_job_srv.get(selector)[:entries].first
|
|
82
|
+
|
|
83
|
+
puts "Batch job ID %d has status '%s'." %
|
|
84
|
+
[batch_job[:id], batch_job[:status]]
|
|
85
|
+
|
|
86
|
+
poll_attempts += 1
|
|
87
|
+
is_pending = PENDING_STATUSES.include?(batch_job[:status])
|
|
88
|
+
end while is_pending and poll_attempts < MAX_POLL_ATTEMPTS
|
|
89
|
+
|
|
90
|
+
if is_pending
|
|
91
|
+
raise StandardError,
|
|
92
|
+
"Job is still in pending state after polling %d times." %
|
|
93
|
+
MAX_POLL_ATTEMPTS
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
unless batch_job[:processing_errors].nil?
|
|
97
|
+
batch_job[:processing_errors].each_with_index do |processing_error, i|
|
|
98
|
+
puts ("Processing error [%d]: errorType=%s, trigger=%s, errorString=%s" +
|
|
99
|
+
"fieldPath=%s, reason=%s") % [i, processing_error[:api_error_type],
|
|
100
|
+
processing_error[:trigger], processing_error[:error_string],
|
|
101
|
+
processing_error[:field_path], processing_error[:reason]]
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
unless batch_job[:download_url].nil? or batch_job[:download_url][:url].nil?
|
|
106
|
+
mutate_response = batch_job_utils.get_job_results(
|
|
107
|
+
batch_job[:download_url][:url])
|
|
108
|
+
puts "Downloaded results from '%s':" % batch_job[:download_url][:url]
|
|
109
|
+
mutate_response.each do |mutate_result|
|
|
110
|
+
outcome = "FAILURE"
|
|
111
|
+
outcome = "SUCCESS" if mutate_result[:error_list].nil?
|
|
112
|
+
puts " Operation [%d] - %s" % [mutate_result[:index], outcome]
|
|
113
|
+
end
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def create_keyword_operations(ad_group_id)
|
|
118
|
+
operations = []
|
|
119
|
+
KEYWORD_COUNT.times do |i|
|
|
120
|
+
text = "keyword %d" % i
|
|
121
|
+
|
|
122
|
+
# Make 10% of keywords invalid to demonstrate error handling.
|
|
123
|
+
text = text + "!!!" if i % 10 == 0
|
|
124
|
+
keyword = {
|
|
125
|
+
:xsi_type => 'Keyword',
|
|
126
|
+
:text => text,
|
|
127
|
+
:match_type => 'BROAD'
|
|
128
|
+
}
|
|
129
|
+
biddable_criterion = {
|
|
130
|
+
:xsi_type => 'BiddableAdGroupCriterion',
|
|
131
|
+
:ad_group_id => ad_group_id,
|
|
132
|
+
:criterion => keyword
|
|
133
|
+
}
|
|
134
|
+
operation = {
|
|
135
|
+
:xsi_type => 'AdGroupCriterionOperation',
|
|
136
|
+
:operator => 'ADD',
|
|
137
|
+
:operand => biddable_criterion
|
|
138
|
+
}
|
|
139
|
+
operations << operation
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
return operations
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
if __FILE__ == $0
|
|
146
|
+
API_VERSION = :v201601
|
|
147
|
+
KEYWORD_COUNT = 100
|
|
148
|
+
MAX_POLL_ATTEMPTS = 5
|
|
149
|
+
PENDING_STATUSES = ['ACTIVE', 'AWAITING_FILE']
|
|
150
|
+
|
|
151
|
+
begin
|
|
152
|
+
ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
|
|
153
|
+
|
|
154
|
+
add_keywords_using_incremental_batch_job(ad_group_id)
|
|
155
|
+
|
|
156
|
+
# Authorization error.
|
|
157
|
+
rescue AdsCommon::Errors::OAuth2VerificationRequired => e
|
|
158
|
+
puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
|
|
159
|
+
"OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
|
|
160
|
+
"to retrieve and store OAuth2 tokens."
|
|
161
|
+
puts "See this wiki page for more details:\n\n " +
|
|
162
|
+
'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
|
|
163
|
+
|
|
164
|
+
# HTTP errors.
|
|
165
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
166
|
+
puts "HTTP Error: %s" % e
|
|
167
|
+
|
|
168
|
+
# API errors.
|
|
169
|
+
rescue AdwordsApi::Errors::ApiException => e
|
|
170
|
+
puts "Message: %s" % e.message
|
|
171
|
+
puts 'Errors:'
|
|
172
|
+
e.errors.each_with_index do |error, index|
|
|
173
|
+
puts "\tError [%d]:" % (index + 1)
|
|
174
|
+
error.each do |field, value|
|
|
175
|
+
puts "\t\t%s: %s" % [field, value]
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
end
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# Encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# Copyright:: Copyright 2014, Google Inc. All Rights Reserved.
|
|
5
|
+
#
|
|
6
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
+
# implied.
|
|
16
|
+
# See the License for the specific language governing permissions and
|
|
17
|
+
# limitations under the License.
|
|
18
|
+
#
|
|
19
|
+
# This code example adds a text ad that uses advanced features of upgraded
|
|
20
|
+
# URLs.
|
|
21
|
+
|
|
22
|
+
require 'adwords_api'
|
|
23
|
+
|
|
24
|
+
def add_text_ad_with_upgraded_urls(ad_group_id)
|
|
25
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
|
26
|
+
# when called without parameters.
|
|
27
|
+
adwords = AdwordsApi::Api.new
|
|
28
|
+
|
|
29
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
30
|
+
# the configuration file or provide your own logger:
|
|
31
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
|
32
|
+
|
|
33
|
+
ad_group_ad_srv = adwords.service(:AdGroupAdService, API_VERSION)
|
|
34
|
+
|
|
35
|
+
# Since your tracking URL will have two custom parameters, provide their
|
|
36
|
+
# values too. This can be provided at campaign, ad group, ad, criterion, or
|
|
37
|
+
# feed item levels.
|
|
38
|
+
season_parameter = {
|
|
39
|
+
:key => 'season',
|
|
40
|
+
:value => 'christmas'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
promo_code_parameter = {
|
|
44
|
+
:key => 'promocode',
|
|
45
|
+
:value => 'NYC123'
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
tracking_url_parameters = {
|
|
49
|
+
:parameters => [season_parameter, promo_code_parameter]
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
text_ad = {
|
|
53
|
+
:xsi_type => 'TextAd',
|
|
54
|
+
:headline => 'Luxury Cruise to Mars',
|
|
55
|
+
:description1 => 'Visit the Red Planet in style.',
|
|
56
|
+
:description2 => 'Low-gravity fun for everyone!',
|
|
57
|
+
:display_url => 'www.example.com',
|
|
58
|
+
# Specify a tracking URL for 3rd party tracking provider. You may specify
|
|
59
|
+
# one at customer, campaign, ad group, ad, criterion, or feed item levels.
|
|
60
|
+
:tracking_url_template => 'http://tracker.example.com/' +
|
|
61
|
+
'?season={_season}&promocode={_promocode}&u={lpurl}',
|
|
62
|
+
:url_custom_parameters => tracking_url_parameters,
|
|
63
|
+
# Specify a list of final URLs. This field cannot be set if :url field
|
|
64
|
+
# is set. This may be specified at ad, criterion, and feed item levels.
|
|
65
|
+
:final_urls => [
|
|
66
|
+
'http://www.example.com/cruise/space/',
|
|
67
|
+
'http://www.example.com/locations/mars/'
|
|
68
|
+
],
|
|
69
|
+
# Specify a list of final mobile URLs. This field cannot be set if :url
|
|
70
|
+
# field is set. This may be specificed at ad, criterion, and
|
|
71
|
+
# feed item levels.
|
|
72
|
+
:final_mobile_urls => [
|
|
73
|
+
'http://mobile.example.com/cruise/space/',
|
|
74
|
+
'http://mobile.example.com/locations/mars/'
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
operation = {
|
|
79
|
+
:operator => 'ADD',
|
|
80
|
+
:operand => {:ad_group_id => ad_group_id, :ad => text_ad}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
# Add ads.
|
|
84
|
+
response = ad_group_ad_srv.mutate([operation])
|
|
85
|
+
if response and response[:value]
|
|
86
|
+
response[:value].each do |ad|
|
|
87
|
+
text_ad = ad[:ad]
|
|
88
|
+
puts "Ad with ID %d and displayUrl '%s' was added." %
|
|
89
|
+
[text_ad[:id], text_ad[:display_url]]
|
|
90
|
+
puts "\tFinal URLs: %s" % [text_ad[:final_urls].join(', ')]
|
|
91
|
+
puts "\tFinal Mobile URLs: %s" % [text_ad[:final_mobile_urls].join(', ')]
|
|
92
|
+
puts "\tTracking URL template: %s" % [text_ad[:tracking_url_template]]
|
|
93
|
+
custom_parameters =
|
|
94
|
+
text_ad[:url_custom_parameters][:parameters].map do |custom_parameter|
|
|
95
|
+
"%s=%s" % [custom_parameter[:key], custom_parameter[:value]]
|
|
96
|
+
end
|
|
97
|
+
puts "\tCustom parameters: %s" % [custom_parameters.join(', ')]
|
|
98
|
+
end
|
|
99
|
+
else
|
|
100
|
+
raise StandardError, 'No ads were added.'
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
if __FILE__ == $0
|
|
105
|
+
API_VERSION = :v201601
|
|
106
|
+
|
|
107
|
+
begin
|
|
108
|
+
ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
|
|
109
|
+
add_text_ad_with_upgraded_urls(ad_group_id)
|
|
110
|
+
|
|
111
|
+
# Authorization error.
|
|
112
|
+
rescue AdsCommon::Errors::OAuth2VerificationRequired => e
|
|
113
|
+
puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
|
|
114
|
+
"OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
|
|
115
|
+
"to retrieve and store OAuth2 tokens."
|
|
116
|
+
puts "See this wiki page for more details:\n\n " +
|
|
117
|
+
'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
|
|
118
|
+
|
|
119
|
+
# HTTP errors.
|
|
120
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
121
|
+
puts "HTTP Error: %s" % e
|
|
122
|
+
|
|
123
|
+
# API errors.
|
|
124
|
+
rescue AdwordsApi::Errors::ApiException => e
|
|
125
|
+
puts "Message: %s" % e.message
|
|
126
|
+
puts 'Errors:'
|
|
127
|
+
e.errors.each_with_index do |error, index|
|
|
128
|
+
puts "\tError [%d]:" % (index + 1)
|
|
129
|
+
error.each do |field, value|
|
|
130
|
+
puts "\t\t%s: %s" % [field, value]
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
end
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# Encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# Copyright:: Copyright 2015, Google Inc. All Rights Reserved.
|
|
5
|
+
#
|
|
6
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
+
# implied.
|
|
16
|
+
# See the License for the specific language governing permissions and
|
|
17
|
+
# limitations under the License.
|
|
18
|
+
#
|
|
19
|
+
# This example creates a shared list of negative broad match keywords, it then
|
|
20
|
+
# attaches them to a campaign.
|
|
21
|
+
|
|
22
|
+
require 'adwords_api'
|
|
23
|
+
require 'date'
|
|
24
|
+
|
|
25
|
+
def create_and_attach_shared_keyword_set(campaign_id)
|
|
26
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
|
27
|
+
# when called without parameters.
|
|
28
|
+
adwords = AdwordsApi::Api.new
|
|
29
|
+
|
|
30
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
31
|
+
# the configuration file or provide your own logger:
|
|
32
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
|
33
|
+
|
|
34
|
+
shared_set_srv = adwords.service(:SharedSetService, API_VERSION)
|
|
35
|
+
shared_criterion_srv = adwords.service(:SharedCriterionService, API_VERSION)
|
|
36
|
+
campaign_shared_set_srv =
|
|
37
|
+
adwords.service(:CampaignSharedSetService, API_VERSION)
|
|
38
|
+
|
|
39
|
+
# Keywords to create a shared set of.
|
|
40
|
+
keywords = ['mars cruise', 'mars hotels']
|
|
41
|
+
|
|
42
|
+
# Create shared negative keyword set.
|
|
43
|
+
shared_set = {
|
|
44
|
+
:name => 'API Negative keyword list - %d' % (Time.new.to_f * 1000).to_i,
|
|
45
|
+
:type => 'NEGATIVE_KEYWORDS'
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
# Add shared set.
|
|
49
|
+
response = shared_set_srv.mutate([
|
|
50
|
+
{:operator => 'ADD', :operand => shared_set}
|
|
51
|
+
])
|
|
52
|
+
|
|
53
|
+
if response and response[:value]
|
|
54
|
+
shared_set = response[:value].first
|
|
55
|
+
shared_set_id = shared_set[:shared_set_id]
|
|
56
|
+
puts "Shared set with ID %d and name '%s' was successfully added." %
|
|
57
|
+
[shared_set_id, shared_set[:name]]
|
|
58
|
+
else
|
|
59
|
+
raise StandardError, 'No shared set was added'
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
# Add negative keywords to shared set.
|
|
63
|
+
shared_criteria = keywords.map do |keyword|
|
|
64
|
+
{
|
|
65
|
+
:criterion => {
|
|
66
|
+
:xsi_type => 'Keyword',
|
|
67
|
+
:text => keyword,
|
|
68
|
+
:match_type => 'BROAD'
|
|
69
|
+
},
|
|
70
|
+
:negative => true,
|
|
71
|
+
:shared_set_id => shared_set_id
|
|
72
|
+
}
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
operations = shared_criteria.map do |criterion|
|
|
76
|
+
{:operator => 'ADD', :operand => criterion}
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
response = shared_criterion_srv.mutate(operations)
|
|
80
|
+
if response and response[:value]
|
|
81
|
+
response[:value].each do |shared_criterion|
|
|
82
|
+
puts "Added shared criterion ID %d '%s' to shared set with ID %d." %
|
|
83
|
+
[shared_criterion[:criterion][:id],
|
|
84
|
+
shared_criterion[:criterion][:text],
|
|
85
|
+
shared_criterion[:shared_set_id]]
|
|
86
|
+
end
|
|
87
|
+
else
|
|
88
|
+
raise StandardError, 'No shared keyword was added'
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# Attach the articles to the campaign.
|
|
92
|
+
campaign_set = {
|
|
93
|
+
:campaign_id => campaign_id,
|
|
94
|
+
:shared_set_id => shared_set_id
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
response = campaign_shared_set_srv.mutate([
|
|
98
|
+
{:operator => 'ADD', :operand => campaign_set}
|
|
99
|
+
])
|
|
100
|
+
if response and response[:value]
|
|
101
|
+
campaign_shared_set = response[:value].first
|
|
102
|
+
puts 'Shared set ID %d was attached to campaign ID %d' %
|
|
103
|
+
[campaign_shared_set[:shared_set_id], campaign_shared_set[:campaign_id]]
|
|
104
|
+
else
|
|
105
|
+
raise StandardError, 'No campaign shared set was added'
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
if __FILE__ == $0
|
|
110
|
+
API_VERSION = :v201601
|
|
111
|
+
|
|
112
|
+
begin
|
|
113
|
+
# Campaign ID to attach shared keyword set to.
|
|
114
|
+
campaign_id = 'INSERT_CAMPAIGN_ID_HERE'.to_i
|
|
115
|
+
|
|
116
|
+
create_and_attach_shared_keyword_set(campaign_id)
|
|
117
|
+
|
|
118
|
+
# Authorization error.
|
|
119
|
+
rescue AdsCommon::Errors::OAuth2VerificationRequired => e
|
|
120
|
+
puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
|
|
121
|
+
"OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
|
|
122
|
+
"to retrieve and store OAuth2 tokens."
|
|
123
|
+
puts "See this wiki page for more details:\n\n " +
|
|
124
|
+
'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
|
|
125
|
+
|
|
126
|
+
# HTTP errors.
|
|
127
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
128
|
+
puts "HTTP Error: %s" % e
|
|
129
|
+
|
|
130
|
+
# API errors.
|
|
131
|
+
rescue AdwordsApi::Errors::ApiException => e
|
|
132
|
+
puts "Message: %s" % e.message
|
|
133
|
+
puts 'Errors:'
|
|
134
|
+
e.errors.each_with_index do |error, index|
|
|
135
|
+
puts "\tError [%d]:" % (index + 1)
|
|
136
|
+
error.each do |field, value|
|
|
137
|
+
puts "\t\t%s: %s" % [field, value]
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
end
|
|
141
|
+
end
|