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.
Files changed (171) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +8 -0
  3. data/examples/v201509/basic_operations/add_ad_groups.rb +4 -2
  4. data/examples/v201509/remarketing/add_crm_based_user_list.rb +2 -4
  5. data/examples/v201509/{advanced_operations → remarketing}/upload_offline_conversions.rb +6 -21
  6. data/examples/v201601/account_management/create_account.rb +88 -0
  7. data/examples/v201601/account_management/get_account_changes.rb +139 -0
  8. data/examples/v201601/account_management/get_account_hierarchy.rb +132 -0
  9. data/examples/v201601/advanced_operations/add_ad_customizers.rb +184 -0
  10. data/examples/v201601/advanced_operations/add_ad_group_bid_modifier.rb +101 -0
  11. data/examples/v201601/advanced_operations/add_click_to_download_ad.rb +133 -0
  12. data/examples/v201601/advanced_operations/add_html5_ad.rb +137 -0
  13. data/examples/v201601/advanced_operations/add_keywords_using_incremental_batch_job.rb +179 -0
  14. data/examples/v201601/advanced_operations/add_text_ad_with_upgraded_urls.rb +134 -0
  15. data/examples/v201601/advanced_operations/create_and_attach_shared_keyword_set.rb +141 -0
  16. data/examples/v201601/advanced_operations/find_and_remove_criteria_from_shared_set.rb +174 -0
  17. data/examples/v201601/advanced_operations/get_ad_group_bid_modifiers.rb +102 -0
  18. data/examples/v201601/advanced_operations/use_shared_bidding_strategy.rb +147 -0
  19. data/examples/v201601/basic_operations/add_ad_groups.rb +142 -0
  20. data/examples/v201601/basic_operations/add_campaigns.rb +139 -0
  21. data/examples/v201601/basic_operations/add_keywords.rb +114 -0
  22. data/examples/v201601/basic_operations/add_text_ads.rb +109 -0
  23. data/examples/v201601/basic_operations/get_ad_groups.rb +102 -0
  24. data/examples/v201601/basic_operations/get_campaigns.rb +97 -0
  25. data/examples/v201601/basic_operations/get_campaigns_with_awql.rb +89 -0
  26. data/examples/v201601/basic_operations/get_keywords.rb +109 -0
  27. data/examples/v201601/basic_operations/get_text_ads.rb +110 -0
  28. data/examples/v201601/basic_operations/pause_ad.rb +88 -0
  29. data/examples/v201601/basic_operations/remove_ad.rb +89 -0
  30. data/examples/v201601/basic_operations/remove_ad_group.rb +85 -0
  31. data/examples/v201601/basic_operations/remove_campaign.rb +87 -0
  32. data/examples/v201601/basic_operations/remove_keyword.rb +94 -0
  33. data/examples/v201601/basic_operations/update_ad_group.rb +85 -0
  34. data/examples/v201601/basic_operations/update_campaign.rb +86 -0
  35. data/examples/v201601/basic_operations/update_keyword.rb +106 -0
  36. data/examples/v201601/campaign_management/add_campaign_labels.rb +82 -0
  37. data/examples/v201601/campaign_management/add_complete_campaigns_using_batch_job.rb +356 -0
  38. data/examples/v201601/campaign_management/add_experiment.rb +162 -0
  39. data/examples/v201601/campaign_management/add_keywords_in_bulk.rb +153 -0
  40. data/examples/v201601/campaign_management/get_all_disapproved_ads.rb +97 -0
  41. data/examples/v201601/campaign_management/get_all_disapproved_ads_with_awql.rb +89 -0
  42. data/examples/v201601/campaign_management/get_campaigns_by_label.rb +108 -0
  43. data/examples/v201601/campaign_management/promote_experiment.rb +81 -0
  44. data/examples/v201601/campaign_management/set_ad_parameters.rb +118 -0
  45. data/examples/v201601/campaign_management/set_criterion_bid_modifier.rb +104 -0
  46. data/examples/v201601/campaign_management/validate_text_ad.rb +110 -0
  47. data/examples/v201601/error_handling/handle_partial_failures.rb +130 -0
  48. data/examples/v201601/error_handling/handle_policy_violation_error.rb +141 -0
  49. data/examples/v201601/extensions/add_google_my_business_location_extensions.rb +193 -0
  50. data/examples/v201601/extensions/add_site_links.rb +164 -0
  51. data/examples/v201601/extensions/add_site_links_using_feeds.rb +281 -0
  52. data/examples/v201601/migration/migrate_to_extension_settings.rb +386 -0
  53. data/examples/v201601/migration/upgrade_ad_url.rb +93 -0
  54. data/examples/v201601/misc/get_all_images_and_videos.rb +104 -0
  55. data/examples/v201601/misc/setup_oauth2.rb +84 -0
  56. data/examples/v201601/misc/upload_image.rb +93 -0
  57. data/examples/v201601/misc/upload_media_bundle.rb +90 -0
  58. data/examples/v201601/misc/use_oauth2_jwt.rb +93 -0
  59. data/examples/v201601/misc/use_runtime_config.rb +92 -0
  60. data/examples/v201601/optimization/estimate_keyword_traffic.rb +146 -0
  61. data/examples/v201601/optimization/get_keyword_bid_simulations.rb +95 -0
  62. data/examples/v201601/optimization/get_keyword_ideas.rb +126 -0
  63. data/examples/v201601/remarketing/add_audience.rb +118 -0
  64. data/examples/v201601/remarketing/add_conversion_tracker.rb +97 -0
  65. data/examples/v201601/remarketing/add_crm_based_user_list.rb +119 -0
  66. data/examples/v201601/remarketing/add_rule_based_user_lists.rb +167 -0
  67. data/examples/v201601/remarketing/upload_offline_conversions.rb +98 -0
  68. data/examples/v201601/reporting/download_criteria_report.rb +92 -0
  69. data/examples/v201601/reporting/download_criteria_report_with_awql.rb +93 -0
  70. data/examples/v201601/reporting/get_report_fields.rb +75 -0
  71. data/examples/v201601/reporting/parallel_report_download.rb +166 -0
  72. data/examples/v201601/reporting/stream_criteria_report_results.rb +97 -0
  73. data/examples/v201601/shopping_campaigns/add_product_partition_tree.rb +267 -0
  74. data/examples/v201601/shopping_campaigns/add_product_scope.rb +129 -0
  75. data/examples/v201601/shopping_campaigns/add_shopping_campaign.rb +129 -0
  76. data/examples/v201601/shopping_campaigns/get_product_category_taxonomy.rb +115 -0
  77. data/examples/v201601/targeting/add_campaign_targeting_criteria.rb +180 -0
  78. data/examples/v201601/targeting/add_demographic_targeting_criteria.rb +112 -0
  79. data/examples/v201601/targeting/get_campaign_targeting_criteria.rb +106 -0
  80. data/examples/v201601/targeting/get_targetable_languages_and_carriers.rb +89 -0
  81. data/examples/v201601/targeting/lookup_location.rb +108 -0
  82. data/lib/adwords_api/api_config.rb +90 -4
  83. data/lib/adwords_api/batch_job_utils.rb +29 -17
  84. data/lib/adwords_api/incremental_upload_helper.rb +5 -1
  85. data/lib/adwords_api/report_stream.rb +7 -8
  86. data/lib/adwords_api/report_utils.rb +4 -4
  87. data/lib/adwords_api/v201601/account_label_service.rb +46 -0
  88. data/lib/adwords_api/v201601/account_label_service_registry.rb +46 -0
  89. data/lib/adwords_api/v201601/ad_customizer_feed_service.rb +46 -0
  90. data/lib/adwords_api/v201601/ad_customizer_feed_service_registry.rb +46 -0
  91. data/lib/adwords_api/v201601/ad_group_ad_service.rb +70 -0
  92. data/lib/adwords_api/v201601/ad_group_ad_service_registry.rb +46 -0
  93. data/lib/adwords_api/v201601/ad_group_bid_modifier_service.rb +54 -0
  94. data/lib/adwords_api/v201601/ad_group_bid_modifier_service_registry.rb +46 -0
  95. data/lib/adwords_api/v201601/ad_group_criterion_service.rb +62 -0
  96. data/lib/adwords_api/v201601/ad_group_criterion_service_registry.rb +46 -0
  97. data/lib/adwords_api/v201601/ad_group_extension_setting_service.rb +54 -0
  98. data/lib/adwords_api/v201601/ad_group_extension_setting_service_registry.rb +46 -0
  99. data/lib/adwords_api/v201601/ad_group_feed_service.rb +54 -0
  100. data/lib/adwords_api/v201601/ad_group_feed_service_registry.rb +46 -0
  101. data/lib/adwords_api/v201601/ad_group_service.rb +62 -0
  102. data/lib/adwords_api/v201601/ad_group_service_registry.rb +46 -0
  103. data/lib/adwords_api/v201601/ad_param_service.rb +46 -0
  104. data/lib/adwords_api/v201601/ad_param_service_registry.rb +46 -0
  105. data/lib/adwords_api/v201601/adwords_user_list_service.rb +54 -0
  106. data/lib/adwords_api/v201601/adwords_user_list_service_registry.rb +46 -0
  107. data/lib/adwords_api/v201601/batch_job_service.rb +54 -0
  108. data/lib/adwords_api/v201601/batch_job_service_registry.rb +46 -0
  109. data/lib/adwords_api/v201601/bidding_strategy_service.rb +54 -0
  110. data/lib/adwords_api/v201601/bidding_strategy_service_registry.rb +46 -0
  111. data/lib/adwords_api/v201601/budget_order_service.rb +54 -0
  112. data/lib/adwords_api/v201601/budget_order_service_registry.rb +46 -0
  113. data/lib/adwords_api/v201601/budget_service.rb +54 -0
  114. data/lib/adwords_api/v201601/budget_service_registry.rb +46 -0
  115. data/lib/adwords_api/v201601/campaign_criterion_service.rb +54 -0
  116. data/lib/adwords_api/v201601/campaign_criterion_service_registry.rb +46 -0
  117. data/lib/adwords_api/v201601/campaign_extension_setting_service.rb +54 -0
  118. data/lib/adwords_api/v201601/campaign_extension_setting_service_registry.rb +46 -0
  119. data/lib/adwords_api/v201601/campaign_feed_service.rb +54 -0
  120. data/lib/adwords_api/v201601/campaign_feed_service_registry.rb +46 -0
  121. data/lib/adwords_api/v201601/campaign_service.rb +62 -0
  122. data/lib/adwords_api/v201601/campaign_service_registry.rb +46 -0
  123. data/lib/adwords_api/v201601/campaign_shared_set_service.rb +54 -0
  124. data/lib/adwords_api/v201601/campaign_shared_set_service_registry.rb +46 -0
  125. data/lib/adwords_api/v201601/constant_data_service.rb +110 -0
  126. data/lib/adwords_api/v201601/constant_data_service_registry.rb +46 -0
  127. data/lib/adwords_api/v201601/conversion_tracker_service.rb +54 -0
  128. data/lib/adwords_api/v201601/conversion_tracker_service_registry.rb +46 -0
  129. data/lib/adwords_api/v201601/customer_extension_setting_service.rb +54 -0
  130. data/lib/adwords_api/v201601/customer_extension_setting_service_registry.rb +46 -0
  131. data/lib/adwords_api/v201601/customer_feed_service.rb +54 -0
  132. data/lib/adwords_api/v201601/customer_feed_service_registry.rb +46 -0
  133. data/lib/adwords_api/v201601/customer_service.rb +54 -0
  134. data/lib/adwords_api/v201601/customer_service_registry.rb +46 -0
  135. data/lib/adwords_api/v201601/customer_sync_service.rb +38 -0
  136. data/lib/adwords_api/v201601/customer_sync_service_registry.rb +47 -0
  137. data/lib/adwords_api/v201601/data_service.rb +78 -0
  138. data/lib/adwords_api/v201601/data_service_registry.rb +46 -0
  139. data/lib/adwords_api/v201601/experiment_service.rb +46 -0
  140. data/lib/adwords_api/v201601/experiment_service_registry.rb +46 -0
  141. data/lib/adwords_api/v201601/feed_item_service.rb +54 -0
  142. data/lib/adwords_api/v201601/feed_item_service_registry.rb +46 -0
  143. data/lib/adwords_api/v201601/feed_mapping_service.rb +54 -0
  144. data/lib/adwords_api/v201601/feed_mapping_service_registry.rb +46 -0
  145. data/lib/adwords_api/v201601/feed_service.rb +54 -0
  146. data/lib/adwords_api/v201601/feed_service_registry.rb +46 -0
  147. data/lib/adwords_api/v201601/label_service.rb +54 -0
  148. data/lib/adwords_api/v201601/label_service_registry.rb +46 -0
  149. data/lib/adwords_api/v201601/location_criterion_service.rb +46 -0
  150. data/lib/adwords_api/v201601/location_criterion_service_registry.rb +46 -0
  151. data/lib/adwords_api/v201601/managed_customer_service.rb +78 -0
  152. data/lib/adwords_api/v201601/managed_customer_service_registry.rb +46 -0
  153. data/lib/adwords_api/v201601/media_service.rb +54 -0
  154. data/lib/adwords_api/v201601/media_service_registry.rb +46 -0
  155. data/lib/adwords_api/v201601/mutate_job_service.rb +54 -0
  156. data/lib/adwords_api/v201601/mutate_job_service_registry.rb +46 -0
  157. data/lib/adwords_api/v201601/offline_conversion_feed_service.rb +38 -0
  158. data/lib/adwords_api/v201601/offline_conversion_feed_service_registry.rb +46 -0
  159. data/lib/adwords_api/v201601/report_definition_service.rb +38 -0
  160. data/lib/adwords_api/v201601/report_definition_service_registry.rb +46 -0
  161. data/lib/adwords_api/v201601/shared_criterion_service.rb +54 -0
  162. data/lib/adwords_api/v201601/shared_criterion_service_registry.rb +46 -0
  163. data/lib/adwords_api/v201601/shared_set_service.rb +54 -0
  164. data/lib/adwords_api/v201601/shared_set_service_registry.rb +46 -0
  165. data/lib/adwords_api/v201601/targeting_idea_service.rb +38 -0
  166. data/lib/adwords_api/v201601/targeting_idea_service_registry.rb +46 -0
  167. data/lib/adwords_api/v201601/traffic_estimator_service.rb +38 -0
  168. data/lib/adwords_api/v201601/traffic_estimator_service_registry.rb +46 -0
  169. data/lib/adwords_api/version.rb +1 -1
  170. data/test/adwords_api/test_batch_job_utils.rb +11 -2
  171. metadata +163 -5
@@ -0,0 +1,174 @@
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 demonstrates how to find shared sets, shared set criterions and
20
+ # how to remove them.
21
+
22
+ require 'adwords_api'
23
+
24
+ def find_and_remove_criteria_from_shared_set(campaign_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
+ campaign_shared_set_srv =
34
+ adwords.service(:CampaignSharedSetService, API_VERSION)
35
+ shared_criterion_srv = adwords.service(:SharedCriterionService, API_VERSION)
36
+
37
+ shared_set_ids = []
38
+ criterion_ids = []
39
+
40
+ # First, retrieve all shared sets associated with the campaign.
41
+
42
+ # Create selector for shared sets to:
43
+ # - filter by campaign ID,
44
+ # - filter by shared set type.
45
+ selector = {
46
+ :fields => ['SharedSetId', 'CampaignId', 'SharedSetName', 'SharedSetType',
47
+ 'Status'],
48
+ :predicates => [
49
+ {:field => 'CampaignId', :operator => 'EQUALS', :values => [campaign_id]},
50
+ {:field => 'SharedSetType', :operator => 'IN', :values =>
51
+ ['NEGATIVE_KEYWORDS', 'NEGATIVE_PLACEMENTS']}
52
+ ],
53
+ :paging => {
54
+ :start_index => 0,
55
+ :number_results => PAGE_SIZE
56
+ }
57
+ }
58
+
59
+ # Set initial values.
60
+ offset, page = 0, {}
61
+
62
+ begin
63
+ page = campaign_shared_set_srv.get(selector)
64
+ if page[:entries]
65
+ page[:entries].each do |shared_set|
66
+ puts "Campaign shared set ID %d and name '%s'" %
67
+ [shared_set[:shared_set_id], shared_set[:shared_set_name]]
68
+ shared_set_ids << shared_set[:shared_set_id]
69
+ end
70
+ # Increment values to request the next page.
71
+ offset += PAGE_SIZE
72
+ selector[:paging][:start_index] = offset
73
+ end
74
+ end while page[:total_num_entries] > offset
75
+
76
+ # Next, Retrieve criterion IDs for all found shared sets.
77
+ selector = {
78
+ :fields => ['SharedSetId', 'Id', 'KeywordText', 'KeywordMatchType',
79
+ 'PlacementUrl'],
80
+ :predicates => [
81
+ {:field => 'SharedSetId', :operator => 'IN', :values => shared_set_ids}
82
+ ],
83
+ :paging => {
84
+ :start_index => 0,
85
+ :number_results => PAGE_SIZE
86
+ }
87
+ }
88
+
89
+ # Set initial values.
90
+ offset, page = 0, {}
91
+
92
+ begin
93
+ page = shared_criterion_srv.get(selector)
94
+ if page[:entries]
95
+ page[:entries].each do |shared_criterion|
96
+ if shared_criterion[:criterion][:type] == 'KEYWORD'
97
+ puts "Shared negative keyword with ID %d and text '%s' was found." %
98
+ [shared_criterion[:criterion][:id],
99
+ shared_criterion[:criterion][:text]]
100
+ elsif shared_criterion[:criterion][:type] == 'PLACEMENT'
101
+ puts "Shared negative placement with ID %d and url '%s' was found." %
102
+ [shared_criterion[:criterion][:id],
103
+ shared_criterion[:criterion][:url]]
104
+ else
105
+ puts 'Shared criterion with ID %d was found.' %
106
+ [shared_criterion[:criterion][:id]]
107
+ end
108
+ criterion_ids << {
109
+ :shared_set_id => shared_criterion[:shared_set_id],
110
+ :criterion_id => shared_criterion[:criterion][:id]
111
+ }
112
+ end
113
+ # Increment values to request the next page.
114
+ offset += PAGE_SIZE
115
+ selector[:paging][:start_index] = offset
116
+ end
117
+ end while page[:total_num_entries] > offset
118
+
119
+ # Finally, remove the criteria.
120
+ operations = criterion_ids.map do |criterion|
121
+ {
122
+ :operator => 'REMOVE',
123
+ :operand => {
124
+ :criterion => {:id => criterion[:criterion_id]},
125
+ :shared_set_id => criterion[:shared_set_id]
126
+ }
127
+ }
128
+ end
129
+
130
+ response = shared_criterion_srv.mutate(operations)
131
+ if response and response[:value]
132
+ response[:value].each do |criterion|
133
+ puts "Criterion ID %d was successfully removed from shared set ID %d." %
134
+ [criterion[:criterion][:id], criterion[:shared_set_id]]
135
+ end
136
+ else
137
+ puts 'No shared criteria were removed.'
138
+ end
139
+ end
140
+
141
+ if __FILE__ == $0
142
+ API_VERSION = :v201601
143
+ PAGE_SIZE = 500
144
+
145
+ begin
146
+ # ID of a campaign to remove shared criteria from.
147
+ campaign_id = 'INSERT_CAMPAIGN_ID_HERE'.to_i
148
+
149
+ find_and_remove_criteria_from_shared_set(campaign_id)
150
+
151
+ # Authorization error.
152
+ rescue AdsCommon::Errors::OAuth2VerificationRequired => e
153
+ puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
154
+ "OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
155
+ "to retrieve and store OAuth2 tokens."
156
+ puts "See this wiki page for more details:\n\n " +
157
+ 'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
158
+
159
+ # HTTP errors.
160
+ rescue AdsCommon::Errors::HttpError => e
161
+ puts "HTTP Error: %s" % e
162
+
163
+ # API errors.
164
+ rescue AdwordsApi::Errors::ApiException => e
165
+ puts "Message: %s" % e.message
166
+ puts 'Errors:'
167
+ e.errors.each_with_index do |error, index|
168
+ puts "\tError [%d]:" % (index + 1)
169
+ error.each do |field, value|
170
+ puts "\t\t%s: %s" % [field, value]
171
+ end
172
+ end
173
+ end
174
+ end
@@ -0,0 +1,102 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Copyright:: Copyright 2013, 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 retrieve ad group level bid modifiers for a
20
+ # campaign.
21
+
22
+ require 'adwords_api'
23
+
24
+ def get_ad_group_bid_modifiers(campaign_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
+ bid_modifier_srv = adwords.service(:AdGroupBidModifierService, API_VERSION)
34
+
35
+ # Get all ad group bid modifiers for the campaign.
36
+ selector = {
37
+ :fields => ['CampaignId', 'AdGroupId', 'Id', 'BidModifier'],
38
+ :predicates => [
39
+ {:field => 'CampaignId', :operator => 'EQUALS', :values => [campaign_id]}
40
+ ],
41
+ :paging => {
42
+ :start_index => 0,
43
+ :number_results => PAGE_SIZE
44
+ }
45
+ }
46
+
47
+ # Set initial values.
48
+ offset, page = 0, {}
49
+
50
+ begin
51
+ page = bid_modifier_srv.get(selector)
52
+ if page[:entries]
53
+ page[:entries].each do |modifier|
54
+ value = modifier[:bid_modifier] || 'unset'
55
+ puts ('Campaign ID %d, AdGroup ID %d, Criterion ID %d has ad group ' +
56
+ 'level modifier: %s') %
57
+ [modifier[:campaign_id], modifier[:ad_group_id],
58
+ modifier[:criterion][:id], value]
59
+ end
60
+ # Increment values to request the next page.
61
+ offset += PAGE_SIZE
62
+ selector[:paging][:start_index] = offset
63
+ else
64
+ puts 'No ad group level bid overrides returned.'
65
+ end
66
+ end while page[:total_num_entries] > offset
67
+ end
68
+
69
+ if __FILE__ == $0
70
+ API_VERSION = :v201601
71
+ PAGE_SIZE = 500
72
+
73
+ begin
74
+ # ID of a campaign to pull overrides for.
75
+ campaign_id = 'INSERT_CAMPAIGN_ID_HERE'.to_i
76
+
77
+ get_ad_group_bid_modifiers(campaign_id)
78
+
79
+ # Authorization error.
80
+ rescue AdsCommon::Errors::OAuth2VerificationRequired => e
81
+ puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
82
+ "OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
83
+ "to retrieve and store OAuth2 tokens."
84
+ puts "See this wiki page for more details:\n\n " +
85
+ 'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
86
+
87
+ # HTTP errors.
88
+ rescue AdsCommon::Errors::HttpError => e
89
+ puts "HTTP Error: %s" % e
90
+
91
+ # API errors.
92
+ rescue AdwordsApi::Errors::ApiException => e
93
+ puts "Message: %s" % e.message
94
+ puts 'Errors:'
95
+ e.errors.each_with_index do |error, index|
96
+ puts "\tError [%d]:" % (index + 1)
97
+ error.each do |field, value|
98
+ puts "\t\t%s: %s" % [field, value]
99
+ end
100
+ end
101
+ end
102
+ end
@@ -0,0 +1,147 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Copyright:: Copyright 2013, 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 adds a Shared Bidding Strategy and uses it to construct a
20
+ # campaign.
21
+
22
+ require 'adwords_api'
23
+ require 'date'
24
+
25
+ def use_shared_bidding_strategy()
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
+ budget_srv = adwords.service(:BudgetService, API_VERSION)
35
+ bidding_srv = adwords.service(:BiddingStrategyService, API_VERSION)
36
+ campaign_srv = adwords.service(:CampaignService, API_VERSION)
37
+
38
+ # Create a budget, which can be shared by multiple campaigns.
39
+ budget = {
40
+ :name => 'Interplanetary budget #%d' % (Time.new.to_f * 1000).to_i,
41
+ :amount => {:micro_amount => 50000000},
42
+ :delivery_method => 'STANDARD',
43
+ :period => 'DAILY',
44
+ :is_explicitly_shared => true
45
+ }
46
+ return_budget = budget_srv.mutate([
47
+ {:operator => 'ADD', :operand => budget}])
48
+ budget_id = return_budget[:value].first[:budget_id]
49
+
50
+ # Create a shared bidding strategy.
51
+ shared_bidding_strategy = {
52
+ :name => 'Maximize Clicks #%d' % (Time.new.to_f * 1000).to_i,
53
+ :bidding_scheme => {
54
+ :xsi_type => 'TargetSpendBiddingScheme',
55
+ # Optionally set additional bidding scheme parameters.
56
+ :bid_ceiling => {:micro_amount => 20000000},
57
+ :spend_target => {:micro_amount => 40000000}
58
+ }
59
+ }
60
+ return_strategy = bidding_srv.mutate([
61
+ {:operator => 'ADD', :operand => shared_bidding_strategy}])
62
+
63
+ bidding_strategy = return_strategy[:value].first
64
+ puts ("Shared bidding strategy with name '%s' and ID %d of type '%s' was " +
65
+ 'created') %
66
+ [bidding_strategy[:name], bidding_strategy[:id], bidding_strategy[:type]]
67
+
68
+ # Create campaigns.
69
+ campaigns = [
70
+ {
71
+ :name => "Interplanetary Cruise #%d" % (Time.new.to_f * 1000).to_i,
72
+ :status => 'PAUSED',
73
+ :bidding_strategy_configuration => {
74
+ :bidding_strategy_id => bidding_strategy[:id]
75
+ },
76
+ # Budget (required) - note only the budget ID is required.
77
+ :budget => {:budget_id => budget_id},
78
+ :advertising_channel_type => 'SEARCH',
79
+ :network_setting => {
80
+ :target_google_search => true,
81
+ :target_search_network => true,
82
+ :target_content_network => true
83
+ }
84
+ },
85
+ {
86
+ :name => "Interplanetary Cruise banner #%d" % (Time.new.to_f * 1000).to_i,
87
+ :status => 'PAUSED',
88
+ :bidding_strategy_configuration => {
89
+ :bidding_strategy_id => bidding_strategy[:id]
90
+ },
91
+ :budget => {:budget_id => budget_id},
92
+ :advertising_channel_type => 'DISPLAY',
93
+ :network_setting => {
94
+ :target_google_search => false,
95
+ :target_search_network => false,
96
+ :target_content_network => true
97
+ }
98
+ }
99
+ ]
100
+
101
+ # Prepare for adding campaign.
102
+ operations = campaigns.map do |campaign|
103
+ {:operator => 'ADD', :operand => campaign}
104
+ end
105
+
106
+ # Add campaign.
107
+ response = campaign_srv.mutate(operations)
108
+ if response and response[:value]
109
+ response[:value].each do |campaign|
110
+ puts "Campaign with name '%s' and ID %d was added." %
111
+ [campaign[:name], campaign[:id]]
112
+ end
113
+ else
114
+ raise new StandardError, 'No campaigns were added.'
115
+ end
116
+ end
117
+
118
+ if __FILE__ == $0
119
+ API_VERSION = :v201601
120
+
121
+ begin
122
+ use_shared_bidding_strategy()
123
+
124
+ # Authorization error.
125
+ rescue AdsCommon::Errors::OAuth2VerificationRequired => e
126
+ puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
127
+ "OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
128
+ "to retrieve and store OAuth2 tokens."
129
+ puts "See this wiki page for more details:\n\n " +
130
+ 'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
131
+
132
+ # HTTP errors.
133
+ rescue AdsCommon::Errors::HttpError => e
134
+ puts "HTTP Error: %s" % e
135
+
136
+ # API errors.
137
+ rescue AdwordsApi::Errors::ApiException => e
138
+ puts "Message: %s" % e.message
139
+ puts 'Errors:'
140
+ e.errors.each_with_index do |error, index|
141
+ puts "\tError [%d]:" % (index + 1)
142
+ error.each do |field, value|
143
+ puts "\t\t%s: %s" % [field, value]
144
+ end
145
+ end
146
+ end
147
+ end
@@ -0,0 +1,142 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Copyright:: Copyright 2011, 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 create ad groups. To get a list of existing
20
+ # campaigns run get_campaigns.rb.
21
+
22
+ require 'adwords_api'
23
+
24
+ def add_ad_groups(campaign_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_srv = adwords.service(:AdGroupService, API_VERSION)
34
+
35
+ ad_groups = [
36
+ {
37
+ :name => "Earth to Mars Cruises #%d" % (Time.new.to_f * 1000).to_i,
38
+ :status => 'ENABLED',
39
+ :campaign_id => campaign_id,
40
+ :bidding_strategy_configuration => {
41
+ :bids => [
42
+ {
43
+ # The 'xsi_type' field allows you to specify the xsi:type of the
44
+ # object being created. It's only necessary when you must provide
45
+ # an explicit type that the client library can't infer.
46
+ :xsi_type => 'CpcBid',
47
+ :bid => {:micro_amount => 10000000}
48
+ }
49
+ ]
50
+ },
51
+ :settings => [
52
+ # Targeting restriction settings. Depending on the :criterion_type_group
53
+ # value, most TargetingSettingDetail only affect Display campaigns.
54
+ # However, the USER_INTEREST_AND_LIST value works for RLSA campaigns -
55
+ # Search campaigns targeting using a remarketing list.
56
+ {
57
+ :xsi_type => 'TargetingSetting',
58
+ :details => [
59
+ # Restricting to serve ads that match your ad group placements.
60
+ # This is equivalent to choosing "Target and bid" in the UI.
61
+ {
62
+ :xsi_type => 'TargetingSettingDetail',
63
+ :criterion_type_group => 'PLACEMENT',
64
+ :target_all => false
65
+ },
66
+ # Using your ad group verticals only for bidding. This is equivalent
67
+ # to choosing "Bid only" in the UI.
68
+ {
69
+ :xsi_type => 'TargetingSettingDetail',
70
+ :criterion_type_group => 'VERTICAL',
71
+ :target_all => true
72
+ }
73
+ ]
74
+ }
75
+ ]
76
+ },
77
+ {
78
+ :name => 'Earth to Pluto Cruises #%d' % (Time.new.to_f * 1000).to_i,
79
+ :status => 'ENABLED',
80
+ :campaign_id => campaign_id,
81
+ :bidding_strategy_configuration => {
82
+ :bids => [
83
+ {
84
+ # The 'xsi_type' field allows you to specify the xsi:type of the
85
+ # object being created. It's only necessary when you must provide
86
+ # an explicit type that the client library can't infer.
87
+ :xsi_type => 'CpcBid',
88
+ :bid => {:micro_amount => 10000000}
89
+ }
90
+ ]
91
+ }
92
+ }
93
+ ]
94
+
95
+ # Prepare operations for adding ad groups.
96
+ operations = ad_groups.map do |ad_group|
97
+ {:operator => 'ADD', :operand => ad_group}
98
+ end
99
+
100
+ # Add ad groups.
101
+ response = ad_group_srv.mutate(operations)
102
+ if response and response[:value]
103
+ response[:value].each do |ad_group|
104
+ puts "Ad group ID %d was successfully added." % ad_group[:id]
105
+ end
106
+ else
107
+ raise StandardError, 'No ad group was added'
108
+ end
109
+ end
110
+
111
+ if __FILE__ == $0
112
+ API_VERSION = :v201601
113
+
114
+ begin
115
+ # Campaign ID to add ad group to.
116
+ campaign_id = 'INSERT_CAMPAIGN_ID_HERE'.to_i
117
+ add_ad_groups(campaign_id)
118
+
119
+ # Authorization error.
120
+ rescue AdsCommon::Errors::OAuth2VerificationRequired => e
121
+ puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
122
+ "OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
123
+ "to retrieve and store OAuth2 tokens."
124
+ puts "See this wiki page for more details:\n\n " +
125
+ 'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
126
+
127
+ # HTTP errors.
128
+ rescue AdsCommon::Errors::HttpError => e
129
+ puts "HTTP Error: %s" % e
130
+
131
+ # API errors.
132
+ rescue AdwordsApi::Errors::ApiException => e
133
+ puts "Message: %s" % e.message
134
+ puts 'Errors:'
135
+ e.errors.each_with_index do |error, index|
136
+ puts "\tError [%d]:" % (index + 1)
137
+ error.each do |field, value|
138
+ puts "\t\t%s: %s" % [field, value]
139
+ end
140
+ end
141
+ end
142
+ end