google-adwords-api 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +3 -0
- data/README +3 -3
- data/examples/v201206/basic_operations/add_campaigns.rb +7 -2
- data/examples/v201209/account_management/create_account.rb +84 -0
- data/examples/v201209/account_management/get_account_alerts.rb +111 -0
- data/examples/v201209/account_management/get_account_changes.rb +137 -0
- data/examples/v201209/account_management/get_account_hierarchy.rb +92 -0
- data/examples/v201209/account_management/get_client_customer_id.rb +85 -0
- data/examples/v201209/account_management/get_client_unit_usage.rb +87 -0
- data/examples/v201209/basic_operations/add_ad_groups.rb +136 -0
- data/examples/v201209/basic_operations/add_campaigns.rb +159 -0
- data/examples/v201209/basic_operations/add_keywords.rb +108 -0
- data/examples/v201209/basic_operations/add_text_ads.rb +105 -0
- data/examples/v201209/basic_operations/delete_ad.rb +85 -0
- data/examples/v201209/basic_operations/delete_ad_group.rb +102 -0
- data/examples/v201209/basic_operations/delete_campaign.rb +103 -0
- data/examples/v201209/basic_operations/delete_keyword.rb +90 -0
- data/examples/v201209/basic_operations/get_ad_groups.rb +98 -0
- data/examples/v201209/basic_operations/get_campaigns.rb +93 -0
- data/examples/v201209/basic_operations/get_campaigns_with_awql.rb +85 -0
- data/examples/v201209/basic_operations/get_keywords.rb +104 -0
- data/examples/v201209/basic_operations/get_text_ads.rb +106 -0
- data/examples/v201209/basic_operations/pause_ad.rb +84 -0
- data/examples/v201209/basic_operations/update_ad_group.rb +81 -0
- data/examples/v201209/basic_operations/update_campaign.rb +82 -0
- data/examples/v201209/basic_operations/update_keyword.rb +99 -0
- data/examples/v201209/campaign_management/add_experiment.rb +158 -0
- data/examples/v201209/campaign_management/add_keywords_in_bulk.rb +150 -0
- data/examples/v201209/campaign_management/add_location_extension.rb +117 -0
- data/examples/v201209/campaign_management/add_location_extension_override.rb +83 -0
- data/examples/v201209/campaign_management/get_all_disapproved_ads.rb +93 -0
- data/examples/v201209/campaign_management/get_all_disapproved_ads_with_awql.rb +84 -0
- data/examples/v201209/campaign_management/promote_experiment.rb +77 -0
- data/examples/v201209/campaign_management/set_ad_parameters.rb +114 -0
- data/examples/v201209/campaign_management/validate_text_ad.rb +106 -0
- data/examples/v201209/error_handling/handle_captcha_challenge.rb +93 -0
- data/examples/v201209/error_handling/handle_partial_failures.rb +126 -0
- data/examples/v201209/error_handling/handle_policy_violation_error.rb +137 -0
- data/examples/v201209/error_handling/handle_two_factor_authorization_error.rb +87 -0
- data/examples/v201209/misc/get_all_images_and_videos.rb +100 -0
- data/examples/v201209/misc/upload_image.rb +89 -0
- data/examples/v201209/misc/use_oauth.rb +100 -0
- data/examples/v201209/misc/use_oauth2.rb +97 -0
- data/examples/v201209/optimization/estimate_keyword_traffic.rb +129 -0
- data/examples/v201209/optimization/get_keyword_bid_simulations.rb +92 -0
- data/examples/v201209/optimization/get_keyword_ideas.rb +114 -0
- data/examples/v201209/optimization/get_placement_ideas.rb +104 -0
- data/examples/v201209/remarketing/add_audience.rb +115 -0
- data/examples/v201209/remarketing/add_conversion_tracker.rb +97 -0
- data/examples/v201209/reporting/download_criteria_report.rb +79 -0
- data/examples/v201209/reporting/download_criteria_report_with_awql.rb +78 -0
- data/examples/v201209/reporting/get_campaign_stats.rb +105 -0
- data/examples/v201209/reporting/get_report_fields.rb +71 -0
- data/examples/v201209/reporting/parallel_report_download.rb +160 -0
- data/examples/v201209/targeting/add_campaign_targeting_criteria.rb +118 -0
- data/examples/v201209/targeting/add_demographic_targeting_criteria.rb +108 -0
- data/examples/v201209/targeting/get_campaign_targeting_criteria.rb +102 -0
- data/examples/v201209/targeting/get_targetable_languages_and_carriers.rb +86 -0
- data/examples/v201209/targeting/lookup_location.rb +104 -0
- data/lib/adwords_api/api_config.rb +64 -5
- data/lib/adwords_api/errors.rb +15 -0
- data/lib/adwords_api/report_utils.rb +30 -11
- data/lib/adwords_api/v201209/ad_extension_override_service.rb +38 -0
- data/lib/adwords_api/v201209/ad_extension_override_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/ad_group_ad_service.rb +42 -0
- data/lib/adwords_api/v201209/ad_group_ad_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/ad_group_criterion_service.rb +42 -0
- data/lib/adwords_api/v201209/ad_group_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/ad_group_service.rb +42 -0
- data/lib/adwords_api/v201209/ad_group_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/ad_param_service.rb +38 -0
- data/lib/adwords_api/v201209/ad_param_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/alert_service.rb +34 -0
- data/lib/adwords_api/v201209/alert_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/budget_order_service.rb +42 -0
- data/lib/adwords_api/v201209/budget_order_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/budget_service.rb +38 -0
- data/lib/adwords_api/v201209/budget_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/campaign_ad_extension_service.rb +38 -0
- data/lib/adwords_api/v201209/campaign_ad_extension_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/campaign_criterion_service.rb +42 -0
- data/lib/adwords_api/v201209/campaign_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/campaign_service.rb +42 -0
- data/lib/adwords_api/v201209/campaign_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/constant_data_service.rb +62 -0
- data/lib/adwords_api/v201209/constant_data_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/conversion_tracker_service.rb +38 -0
- data/lib/adwords_api/v201209/conversion_tracker_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/customer_service.rb +34 -0
- data/lib/adwords_api/v201209/customer_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/customer_sync_service.rb +34 -0
- data/lib/adwords_api/v201209/customer_sync_service_registry.rb +47 -0
- data/lib/adwords_api/v201209/data_service.rb +38 -0
- data/lib/adwords_api/v201209/data_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/experiment_service.rb +38 -0
- data/lib/adwords_api/v201209/experiment_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/geo_location_service.rb +34 -0
- data/lib/adwords_api/v201209/geo_location_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/info_service.rb +34 -0
- data/lib/adwords_api/v201209/info_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/location_criterion_service.rb +34 -0
- data/lib/adwords_api/v201209/location_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/managed_customer_service.rb +38 -0
- data/lib/adwords_api/v201209/managed_customer_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/media_service.rb +38 -0
- data/lib/adwords_api/v201209/media_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/mutate_job_service.rb +42 -0
- data/lib/adwords_api/v201209/mutate_job_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/report_definition_service.rb +34 -0
- data/lib/adwords_api/v201209/report_definition_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/targeting_idea_service.rb +38 -0
- data/lib/adwords_api/v201209/targeting_idea_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/traffic_estimator_service.rb +34 -0
- data/lib/adwords_api/v201209/traffic_estimator_service_registry.rb +46 -0
- data/lib/adwords_api/v201209/user_list_service.rb +38 -0
- data/lib/adwords_api/v201209/user_list_service_registry.rb +46 -0
- data/lib/adwords_api/version.rb +1 -1
- data/test/adwords_api/test_report_utils.rb +94 -6
- data/test/examples/v201209/test_account_management.rb +60 -0
- data/test/examples/v201209/test_basic_operations.rb +177 -0
- data/test/examples/v201209/test_campaign_management.rb +124 -0
- data/test/examples/v201209/test_error_handling.rb +63 -0
- data/test/examples/v201209/test_misc.rb +45 -0
- data/test/examples/v201209/test_optimization.rb +63 -0
- data/test/examples/v201209/test_remarketing.rb +39 -0
- data/test/examples/v201209/test_reporting.rb +84 -0
- data/test/examples/v201209/test_targeting.rb +60 -0
- data/test/examples/v201209/utils.rb +238 -0
- data/test/suite_exampletests_v201209.rb +37 -0
- metadata +123 -2
@@ -0,0 +1,106 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example illustrates how to retrieve all text ads for an ad group. To add
|
22
|
+
# ads to an existing ad group, run add_text_ads.rb.
|
23
|
+
#
|
24
|
+
# Tags: AdGroupAdService.get
|
25
|
+
|
26
|
+
require 'adwords_api'
|
27
|
+
|
28
|
+
def get_text_ads(ad_group_id)
|
29
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
30
|
+
# when called without parameters.
|
31
|
+
adwords = AdwordsApi::Api.new
|
32
|
+
|
33
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
34
|
+
# the configuration file or provide your own logger:
|
35
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
36
|
+
|
37
|
+
ad_group_ad_srv = adwords.service(:AdGroupAdService, API_VERSION)
|
38
|
+
|
39
|
+
# Get all the ads for this ad group.
|
40
|
+
selector = {
|
41
|
+
:fields => ['Id', 'Status', 'AdType'],
|
42
|
+
:ordering => [{:field => 'Id', :sort_order => 'ASCENDING'}],
|
43
|
+
# By default, disabled ads aren't returned by the selector. To return them,
|
44
|
+
# include the DISABLED status in a predicate.
|
45
|
+
:predicates => [
|
46
|
+
{:field => 'AdGroupId', :operator => 'IN', :values => [ad_group_id]},
|
47
|
+
{:field => 'Status',
|
48
|
+
:operator => 'IN',
|
49
|
+
:values => ['ENABLED', 'PAUSED', 'DISABLED']},
|
50
|
+
{:field => 'AdType',
|
51
|
+
:operator => 'EQUALS',
|
52
|
+
:values => ['TEXT_AD']}
|
53
|
+
],
|
54
|
+
:paging => {
|
55
|
+
:start_index => 0,
|
56
|
+
:number_results => PAGE_SIZE
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
# Set initial values.
|
61
|
+
offset, page = 0, {}
|
62
|
+
|
63
|
+
begin
|
64
|
+
page = ad_group_ad_srv.get(selector)
|
65
|
+
if page[:entries]
|
66
|
+
page[:entries].each do |ad|
|
67
|
+
puts "Ad ID is %d, type is '%s' and status is '%s'" %
|
68
|
+
[ad[:ad][:id], ad[:ad][:ad_type], ad[:status]]
|
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
|
+
if page.include?(:total_num_entries)
|
77
|
+
puts "\tAd group ID %d has %d ad(s)." %
|
78
|
+
[ad_group_id, page[:total_num_entries]]
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
if __FILE__ == $0
|
83
|
+
API_VERSION = :v201209
|
84
|
+
PAGE_SIZE = 500
|
85
|
+
|
86
|
+
begin
|
87
|
+
# Ad group ID to get text ads for.
|
88
|
+
ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
|
89
|
+
get_text_ads(ad_group_id)
|
90
|
+
|
91
|
+
# HTTP errors.
|
92
|
+
rescue AdsCommon::Errors::HttpError => e
|
93
|
+
puts "HTTP Error: %s" % e
|
94
|
+
|
95
|
+
# API errors.
|
96
|
+
rescue AdwordsApi::Errors::ApiException => e
|
97
|
+
puts "Message: %s" % e.message
|
98
|
+
puts 'Errors:'
|
99
|
+
e.errors.each_with_index do |error, index|
|
100
|
+
puts "\tError [%d]:" % (index + 1)
|
101
|
+
error.each do |field, value|
|
102
|
+
puts "\t\t%s: %s" % [field, value]
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example illustrates how to update an ad, setting its status to 'PAUSED'.
|
22
|
+
# To create ads, run add_text_ads.rb.
|
23
|
+
#
|
24
|
+
# Tags: AdGroupAdService.mutate
|
25
|
+
|
26
|
+
require 'adwords_api'
|
27
|
+
|
28
|
+
def pause_ad(ad_group_id, ad_id)
|
29
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
30
|
+
# when called without parameters.
|
31
|
+
adwords = AdwordsApi::Api.new
|
32
|
+
|
33
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
34
|
+
# the configuration file or provide your own logger:
|
35
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
36
|
+
|
37
|
+
ad_group_ad_srv = adwords.service(:AdGroupAdService, API_VERSION)
|
38
|
+
|
39
|
+
# Prepare operation for updating ad.
|
40
|
+
operation = {
|
41
|
+
:operator => 'SET',
|
42
|
+
:operand => {
|
43
|
+
:ad_group_id => ad_group_id,
|
44
|
+
:status => 'PAUSED',
|
45
|
+
:ad => {:id => ad_id}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
# Update ad.
|
50
|
+
response = ad_group_ad_srv.mutate([operation])
|
51
|
+
if response and response[:value]
|
52
|
+
ad = response[:value].first
|
53
|
+
puts "Ad ID %d was successfully updated, status set to '%s'." %
|
54
|
+
[ad[:ad][:id], ad[:status]]
|
55
|
+
else
|
56
|
+
puts 'No ads were updated.'
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
if __FILE__ == $0
|
61
|
+
API_VERSION = :v201209
|
62
|
+
|
63
|
+
begin
|
64
|
+
# IDs of ad to pause and its ad group.
|
65
|
+
ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
|
66
|
+
ad_id = 'INSERT_AD_ID_HERE'.to_i
|
67
|
+
pause_ad(ad_group_id, ad_id)
|
68
|
+
|
69
|
+
# HTTP errors.
|
70
|
+
rescue AdsCommon::Errors::HttpError => e
|
71
|
+
puts "HTTP Error: %s" % e
|
72
|
+
|
73
|
+
# API errors.
|
74
|
+
rescue AdwordsApi::Errors::ApiException => e
|
75
|
+
puts "Message: %s" % e.message
|
76
|
+
puts 'Errors:'
|
77
|
+
e.errors.each_with_index do |error, index|
|
78
|
+
puts "\tError [%d]:" % (index + 1)
|
79
|
+
error.each do |field, value|
|
80
|
+
puts "\t\t%s: %s" % [field, value]
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.sgomes@gmail.com (Sérgio Gomes)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example illustrates how to update an ad group, setting its status to
|
22
|
+
# 'PAUSED'. To create an ad group, run add_ad_group.rb.
|
23
|
+
#
|
24
|
+
# Tags: AdGroupService.mutate
|
25
|
+
|
26
|
+
require 'adwords_api'
|
27
|
+
|
28
|
+
def update_ad_group(ad_group_id)
|
29
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
30
|
+
# when called without parameters.
|
31
|
+
adwords = AdwordsApi::Api.new
|
32
|
+
|
33
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
34
|
+
# the configuration file or provide your own logger:
|
35
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
36
|
+
|
37
|
+
ad_group_srv = adwords.service(:AdGroupService, API_VERSION)
|
38
|
+
|
39
|
+
# Prepare for updating ad group.
|
40
|
+
operation = {
|
41
|
+
:operator => 'SET',
|
42
|
+
:operand => {
|
43
|
+
:status => 'PAUSED',
|
44
|
+
:id => ad_group_id
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
# Update ad group.
|
49
|
+
response = ad_group_srv.mutate([operation])
|
50
|
+
if response and response[:value]
|
51
|
+
ad_group = response[:value].first
|
52
|
+
puts 'Ad group id %d was successfully updated.' % ad_group[:id]
|
53
|
+
else
|
54
|
+
puts 'No ad groups were updated.'
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
if __FILE__ == $0
|
59
|
+
API_VERSION = :v201209
|
60
|
+
|
61
|
+
begin
|
62
|
+
# ID of an ad group to update.
|
63
|
+
ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
|
64
|
+
update_ad_group(ad_group_id)
|
65
|
+
|
66
|
+
# HTTP errors.
|
67
|
+
rescue AdsCommon::Errors::HttpError => e
|
68
|
+
puts "HTTP Error: %s" % e
|
69
|
+
|
70
|
+
# API errors.
|
71
|
+
rescue AdwordsApi::Errors::ApiException => e
|
72
|
+
puts "Message: %s" % e.message
|
73
|
+
puts 'Errors:'
|
74
|
+
e.errors.each_with_index do |error, index|
|
75
|
+
puts "\tError [%d]:" % (index + 1)
|
76
|
+
error.each do |field, value|
|
77
|
+
puts "\t\t%s: %s" % [field, value]
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example illustrates how to update a campaign, setting its status to
|
22
|
+
# 'PAUSED'. To create a campaign, run add_campaigns.rb.
|
23
|
+
#
|
24
|
+
# Tags: CampaignService.mutate
|
25
|
+
|
26
|
+
require 'adwords_api'
|
27
|
+
|
28
|
+
def update_campaign(campaign_id)
|
29
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
30
|
+
# when called without parameters.
|
31
|
+
adwords = AdwordsApi::Api.new
|
32
|
+
|
33
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
34
|
+
# the configuration file or provide your own logger:
|
35
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
36
|
+
|
37
|
+
campaign_srv = adwords.service(:CampaignService, API_VERSION)
|
38
|
+
|
39
|
+
# Prepare for updating campaign.
|
40
|
+
operation = {
|
41
|
+
:operator => 'SET',
|
42
|
+
:operand => {
|
43
|
+
:id => campaign_id,
|
44
|
+
:status => 'PAUSED'
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
# Update campaign.
|
49
|
+
response = campaign_srv.mutate([operation])
|
50
|
+
if response and response[:value]
|
51
|
+
campaign = response[:value].first
|
52
|
+
puts "Campaign ID %d was successfully updated, status was set to '%s'." %
|
53
|
+
[campaign[:id], campaign[:status]]
|
54
|
+
else
|
55
|
+
puts 'No campaigns were updated.'
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
if __FILE__ == $0
|
60
|
+
API_VERSION = :v201209
|
61
|
+
|
62
|
+
begin
|
63
|
+
# ID of a campaign to update.
|
64
|
+
campaign_id = 'INSERT_CAMPAIGN_ID_HERE'.to_i
|
65
|
+
update_campaign(campaign_id)
|
66
|
+
|
67
|
+
# HTTP errors.
|
68
|
+
rescue AdsCommon::Errors::HttpError => e
|
69
|
+
puts "HTTP Error: %s" % e
|
70
|
+
|
71
|
+
# API errors.
|
72
|
+
rescue AdwordsApi::Errors::ApiException => e
|
73
|
+
puts "Message: %s" % e.message
|
74
|
+
puts 'Errors:'
|
75
|
+
e.errors.each_with_index do |error, index|
|
76
|
+
puts "\tError [%d]:" % (index + 1)
|
77
|
+
error.each do |field, value|
|
78
|
+
puts "\t\t%s: %s" % [field, value]
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
@@ -0,0 +1,99 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example updates the bid of a keyword. To create a keyword, run
|
22
|
+
# add_keywords.rb.
|
23
|
+
#
|
24
|
+
# Tags: AdGroupCriterionService.mutate
|
25
|
+
|
26
|
+
require 'adwords_api'
|
27
|
+
|
28
|
+
def update_keyword(ad_group_id, criterion_id)
|
29
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
30
|
+
# when called without parameters.
|
31
|
+
adwords = AdwordsApi::Api.new
|
32
|
+
|
33
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
34
|
+
# the configuration file or provide your own logger:
|
35
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
36
|
+
|
37
|
+
ad_group_criterion_srv =
|
38
|
+
adwords.service(:AdGroupCriterionService, API_VERSION)
|
39
|
+
|
40
|
+
# Prepare for updating a keyword.
|
41
|
+
operation = {
|
42
|
+
:operator => 'SET',
|
43
|
+
:operand => {
|
44
|
+
# The 'xsi_type' field allows you to specify the xsi:type of the object
|
45
|
+
# being created. It's only necessary when you must provide an explicit
|
46
|
+
# type that the client library can't infer.
|
47
|
+
:xsi_type => 'BiddableAdGroupCriterion',
|
48
|
+
:ad_group_id => ad_group_id,
|
49
|
+
:criterion => {
|
50
|
+
:id => criterion_id
|
51
|
+
},
|
52
|
+
:bids => {
|
53
|
+
:xsi_type => 'ManualCPCAdGroupCriterionBids',
|
54
|
+
:max_cpc => {
|
55
|
+
:amount => {
|
56
|
+
:micro_amount => 1000000
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
# Update criterion.
|
64
|
+
response = ad_group_criterion_srv.mutate([operation])
|
65
|
+
if response and response[:value]
|
66
|
+
ad_group_criterion = response[:value].first
|
67
|
+
puts "Keyword ID %d was successfully updated, bid set to %d." %
|
68
|
+
[ad_group_criterion[:criterion][:id],
|
69
|
+
ad_group_criterion[:bids][:max_cpc][:amount][:micro_amount]]
|
70
|
+
else
|
71
|
+
puts 'No keywords were updated.'
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
if __FILE__ == $0
|
76
|
+
API_VERSION = :v201209
|
77
|
+
|
78
|
+
begin
|
79
|
+
# IDs of a criterion to update and its ad group.
|
80
|
+
ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
|
81
|
+
criterion_id = 'INSERT_CRITERION_ID_HERE'.to_i
|
82
|
+
update_keyword(ad_group_id, criterion_id)
|
83
|
+
|
84
|
+
# HTTP errors.
|
85
|
+
rescue AdsCommon::Errors::HttpError => e
|
86
|
+
puts "HTTP Error: %s" % e
|
87
|
+
|
88
|
+
# API errors.
|
89
|
+
rescue AdwordsApi::Errors::ApiException => e
|
90
|
+
puts "Message: %s" % e.message
|
91
|
+
puts 'Errors:'
|
92
|
+
e.errors.each_with_index do |error, index|
|
93
|
+
puts "\tError [%d]:" % (index + 1)
|
94
|
+
error.each do |field, value|
|
95
|
+
puts "\t\t%s: %s" % [field, value]
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|