google-adx-buyer-api 0.4.5 → 0.4.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. data/ChangeLog +4 -0
  2. data/README +4 -4
  3. data/examples/v201302/account_management/get_account_changes.rb +137 -0
  4. data/examples/v201302/basic_operations/add_ad_group.rb +88 -0
  5. data/examples/v201302/basic_operations/add_campaign.rb +102 -0
  6. data/examples/v201302/basic_operations/add_placements.rb +99 -0
  7. data/examples/v201302/basic_operations/add_thirdparty_redirect_ad.rb +126 -0
  8. data/examples/v201302/basic_operations/delete_ad.rb +80 -0
  9. data/examples/v201302/basic_operations/delete_ad_group.rb +76 -0
  10. data/examples/v201302/basic_operations/delete_campaign.rb +77 -0
  11. data/examples/v201302/basic_operations/delete_placement.rb +86 -0
  12. data/examples/v201302/basic_operations/get_ad_groups.rb +80 -0
  13. data/examples/v201302/basic_operations/get_campaigns.rb +77 -0
  14. data/examples/v201302/basic_operations/get_placements.rb +92 -0
  15. data/examples/v201302/basic_operations/get_thirdparty_redirect_ads.rb +100 -0
  16. data/examples/v201302/basic_operations/pause_ad.rb +81 -0
  17. data/examples/v201302/basic_operations/update_ad_group.rb +76 -0
  18. data/examples/v201302/basic_operations/update_campaign.rb +79 -0
  19. data/examples/v201302/basic_operations/update_placement.rb +94 -0
  20. data/examples/v201302/campaign_management/add_placements_in_bulk.rb +151 -0
  21. data/examples/v201302/campaign_management/get_all_disapproved_ads.rb +92 -0
  22. data/examples/v201302/error_handling/handle_captcha_challenge.rb +93 -0
  23. data/examples/v201302/error_handling/handle_partial_failures.rb +117 -0
  24. data/examples/v201302/error_handling/handle_policy_violation_error.rb +138 -0
  25. data/examples/v201302/error_handling/handle_two_factor_authorization_error.rb +88 -0
  26. data/examples/v201302/misc/get_all_images_and_videos.rb +100 -0
  27. data/examples/v201302/misc/upload_image.rb +89 -0
  28. data/examples/v201302/misc/use_oauth2.rb +97 -0
  29. data/examples/v201302/misc/use_oauth2_jwt.rb +93 -0
  30. data/examples/v201302/optimization/get_placement_ideas.rb +104 -0
  31. data/examples/v201302/remarketing/add_audience.rb +115 -0
  32. data/examples/v201302/remarketing/add_conversion_tracker.rb +96 -0
  33. data/examples/v201302/reporting/download_criteria_report.rb +79 -0
  34. data/examples/v201302/reporting/get_campaign_stats.rb +105 -0
  35. data/examples/v201302/reporting/get_report_fields.rb +71 -0
  36. data/examples/v201302/targeting/add_campaign_targeting_criteria.rb +107 -0
  37. data/examples/v201302/targeting/get_campaign_targeting_criteria.rb +104 -0
  38. data/examples/v201302/targeting/get_targetable_languages_and_carriers.rb +86 -0
  39. data/examples/v201302/targeting/lookup_location.rb +104 -0
  40. metadata +41 -4
@@ -0,0 +1,79 @@
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 a campaign, setting its budget delivery
22
+ # to 'ACCELERATED'. To create a campaign, run add_campaign.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
+ :budget => {
45
+ :delivery_method => 'ACCELERATED'
46
+ }
47
+ }
48
+ }
49
+
50
+ # Update campaign.
51
+ response = campaign_srv.mutate([operation])
52
+ campaign = response[:value].first
53
+ puts "Campaign ID %d successfully updated, delivery method set to '%s'." %
54
+ [campaign[:id], campaign[:budget][:delivery_method]]
55
+ end
56
+
57
+ if __FILE__ == $0
58
+ API_VERSION = :v201302
59
+
60
+ begin
61
+ campaign_id = 'INSERT_CAMPAIGN_ID_HERE'.to_i
62
+ update_campaign(campaign_id)
63
+
64
+ # HTTP errors.
65
+ rescue AdsCommon::Errors::HttpError => e
66
+ puts "HTTP Error: %s" % e
67
+
68
+ # API errors.
69
+ rescue AdwordsApi::Errors::ApiException => e
70
+ puts "Message: %s" % e.message
71
+ puts 'Errors:'
72
+ e.errors.each_with_index do |error, index|
73
+ puts "\tError [%d]:" % (index + 1)
74
+ error.each do |field, value|
75
+ puts "\t\t%s: %s" % [field, value]
76
+ end
77
+ end
78
+ end
79
+ end
@@ -0,0 +1,94 @@
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 placement, setting its bid. To create
22
+ # a placement, run add_placements.rb.
23
+ #
24
+ # Tags: AdGroupCriterionService.mutate
25
+
26
+ require 'adwords_api'
27
+
28
+ def update_placement(ad_group_id, placement_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 placement.
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 => placement_id
51
+ },
52
+ :bidding_strategy_configuration => {
53
+ :bids => [
54
+ {
55
+ :xsi_type => 'CpmBid',
56
+ :bid => {:micro_amount => 1000000}
57
+ }
58
+ ]
59
+ }
60
+ }
61
+ }
62
+
63
+ # Update the placement.
64
+ response = ad_group_criterion_srv.mutate([operation])
65
+ ad_group_criterion = response[:value].first
66
+ puts "Placement ID %d was successfully updated, bid set to %.2f." %
67
+ [ad_group_criterion[:criterion][:id],
68
+ ad_group_criterion[:bids][:max_cpm][:amount][:micro_amount] / 1000000]
69
+ end
70
+
71
+ if __FILE__ == $0
72
+ API_VERSION = :v201302
73
+
74
+ begin
75
+ ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
76
+ placement_id = 'INSERT_PLACEMENT_ID_HERE'.to_i
77
+ update_placement(ad_group_id, placement_id)
78
+
79
+ # HTTP errors.
80
+ rescue AdsCommon::Errors::HttpError => e
81
+ puts "HTTP Error: %s" % e
82
+
83
+ # API errors.
84
+ rescue AdwordsApi::Errors::ApiException => e
85
+ puts "Message: %s" % e.message
86
+ puts 'Errors:'
87
+ e.errors.each_with_index do |error, index|
88
+ puts "\tError [%d]:" % (index + 1)
89
+ error.each do |field, value|
90
+ puts "\t\t%s: %s" % [field, value]
91
+ end
92
+ end
93
+ end
94
+ end
@@ -0,0 +1,151 @@
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 code sample illustrates how to perform asynchronous requests using the
22
+ # MutateJobService.
23
+ #
24
+ # Tags: MutateJobService.mutate, MutateJobService.get,
25
+ # MutateJobService.getResult
26
+
27
+ require 'adwords_api'
28
+
29
+ def add_placements_in_bulk(ad_group_id)
30
+ # AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
31
+ # when called without parameters.
32
+ adwords = AdwordsApi::Api.new
33
+
34
+ # To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
35
+ # the configuration file or provide your own logger:
36
+ # adwords.logger = Logger.new('adwords_xml.log')
37
+
38
+ mutate_job_srv = adwords.service(:MutateJobService, API_VERSION)
39
+
40
+ # Create AdGroupCriterionOperations to add placements.
41
+ operations = (1..PLACEMENT_NUMBER).map do |index|
42
+ # Add small fraction of invalid URLs to demonstrate errors.
43
+ url = (rand(10) == 0) ? 'invalid-url' : 'http://mars.google.com/'
44
+ {:xsi_type => 'AdGroupCriterionOperation',
45
+ :operator => 'ADD',
46
+ :operand => {
47
+ :xsi_type => 'BiddableAdGroupCriterion',
48
+ :ad_group_id => ad_group_id,
49
+ :criterion => {
50
+ :xsi_type => 'Placement',
51
+ :url => url
52
+ }}}
53
+ end
54
+
55
+ # You can specify up to 3 job IDs that must successfully complete before
56
+ # this job can be processed.
57
+ policy = {:prerequisite_job_ids => []}
58
+
59
+ # Call mutate to create a new job.
60
+ response = mutate_job_srv.mutate(operations, policy)
61
+
62
+ raise StandardError, 'Failed to submit a job; aborting.' unless response
63
+
64
+ job_id = response[:id]
65
+ puts "Job ID %d was successfully created." % job_id
66
+
67
+ # Creating selector to retrive job status and wait for it to complete.
68
+ selector = {
69
+ :xsi_type => 'BulkMutateJobSelector',
70
+ :job_ids => [job_id]
71
+ }
72
+
73
+ status = nil
74
+
75
+ # Poll for job status until it's finished.
76
+ puts 'Retrieving job status...'
77
+ RETRIES_COUNT.times do |retry_attempt|
78
+ job_status_response = mutate_job_srv.get(selector)
79
+ if job_status_response
80
+ status = job_status_response.first[:status]
81
+ case status
82
+ when 'FAILED'
83
+ raise StandardError, "Job failed with reason: '%s'" %
84
+ job_status_response.first[:failure_reason]
85
+ when 'COMPLETED'
86
+ puts "[%d] Job finished with status '%s'" % [retry_attempt, status]
87
+ break
88
+ else
89
+ puts "[%d] Current status is '%s', waiting %d seconds to retry..." %
90
+ [retry_attempt, status, RETRY_INTERVAL]
91
+ sleep(RETRY_INTERVAL)
92
+ end
93
+ else
94
+ raise StandardError, 'Error retrieving job status; aborting.'
95
+ end
96
+ end
97
+
98
+ if status == 'COMPLETED'
99
+ # Get the job result. Here we re-use the same selector.
100
+ result_response = mutate_job_srv.get_result(selector)
101
+
102
+ if result_response and result_response[:simple_mutate_result]
103
+ results = result_response[:simple_mutate_result][:results]
104
+ if results
105
+ results.each_with_index do |result, index|
106
+ result_message = result.include?(:place_holder) ?
107
+ 'FAILED' : 'SUCCEEDED'
108
+ puts "Operation [%d] - %s" % [index, result_message]
109
+ end
110
+ end
111
+ errors = result_response[:simple_mutate_result][:errors]
112
+ if errors
113
+ errors.each do |error|
114
+ puts "Error, reason: '%s', trigger: '%s', field path: '%s'" %
115
+ [error[:reason], error[:trigger], error[:field_path]]
116
+ end
117
+ end
118
+ else
119
+ raise StandardError, 'Error retrieving job results; aborting.'
120
+ end
121
+ else
122
+ puts "Job failed to complete after %d retries" % RETRIES_COUNT
123
+ end
124
+ end
125
+
126
+ if __FILE__ == $0
127
+ API_VERSION = :v201302
128
+ RETRY_INTERVAL = 30
129
+ RETRIES_COUNT = 30
130
+ PLACEMENT_NUMBER = 100
131
+
132
+ begin
133
+ ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
134
+ add_placements_in_bulk(ad_group_id)
135
+
136
+ # HTTP errors.
137
+ rescue AdsCommon::Errors::HttpError => e
138
+ puts "HTTP Error: %s" % e
139
+
140
+ # API errors.
141
+ rescue AdwordsApi::Errors::ApiException => e
142
+ puts "Message: %s" % e.message
143
+ puts 'Errors:'
144
+ e.errors.each_with_index do |error, index|
145
+ puts "\tError [%d]:" % (index + 1)
146
+ error.each do |field, value|
147
+ puts "\t\t%s: %s" % [field, value]
148
+ end
149
+ end
150
+ end
151
+ end
@@ -0,0 +1,92 @@
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 retrieve all the disapproved ads in a given
22
+ # ad group. To add ads, run add_thirdparty_redirect_ad.rb.
23
+ #
24
+ # Tags: AdGroupAdService.get
25
+
26
+ require 'adwords_api'
27
+
28
+ def get_all_disapproved_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 disapproved ads for this campaign.
40
+ selector = {
41
+ :fields => ['Id', 'DisapprovalReasons'],
42
+ :ordering => [{:field => 'Id', :sort_order => 'ASCENDING'}],
43
+ :predicates => [
44
+ {:field => 'AdGroupId', :operator => 'IN', :values => [ad_group_id]},
45
+ {
46
+ :field => 'AdGroupCreativeApprovalStatus',
47
+ :operator => 'IN',
48
+ :values => ['DISAPPROVED']
49
+ }
50
+ ]
51
+ }
52
+ response = ad_group_ad_srv.get(selector)
53
+ if response and response[:entries]
54
+ ad_group_ads = response[:entries]
55
+ puts "Ad group ##{ad_group_id} has #{ad_group_ads.length} " +
56
+ "disapproved ad(s)."
57
+ ad_group_ads.each do |ad_group_ad|
58
+ puts " Ad with id #{ad_group_ad[:ad][:id]} and type " +
59
+ "#{ad_group_ad[:ad][:xsi_type]} was disapproved for the following " +
60
+ "reasons:"
61
+ ad_group_ad[:ad][:disapproval_reasons].each do |reason|
62
+ puts " #{reason}"
63
+ end
64
+ end
65
+ else
66
+ puts "No disapproved ads found for ad group ID %d" % ad_group_id
67
+ end
68
+ end
69
+
70
+ if __FILE__ == $0
71
+ API_VERSION = :v201302
72
+
73
+ begin
74
+ ad_group_id = 'INSERT_AD_GROUP_ID_HERE'.to_i
75
+ get_all_disapproved_ads(ad_group_id)
76
+
77
+ # HTTP errors.
78
+ rescue AdsCommon::Errors::HttpError => e
79
+ puts "HTTP Error: %s" % e
80
+
81
+ # API errors.
82
+ rescue AdwordsApi::Errors::ApiException => e
83
+ puts "Message: %s" % e.message
84
+ puts 'Errors:'
85
+ e.errors.each_with_index do |error, index|
86
+ puts "\tError [%d]:" % (index + 1)
87
+ error.each do |field, value|
88
+ puts "\t\t%s: %s" % [field, value]
89
+ end
90
+ end
91
+ end
92
+ end
@@ -0,0 +1,93 @@
1
+ #!/usr/bin/env ruby
2
+ # Encoding: utf-8
3
+ #
4
+ # Author:: api.dklimkin@gmail.com (Danial Klimkin)
5
+ #
6
+ # Copyright:: Copyright 2012, 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 handle 'CAPTCHA required' authorization
22
+ # errors. Refer to the best practices guide on how to avoid this error:
23
+ #
24
+ # http://code.google.com/apis/adwords/docs/guides/bestpractices.html#auth_tokens
25
+
26
+ require 'adwords_api'
27
+
28
+ def handle_captcha_challenge()
29
+ # Initialize token variable.
30
+ logintoken = nil
31
+
32
+ # This code will repeatedly request authToken from the server until it gets
33
+ # a CAPTCHA challenge request. It is here for illustration purposes only
34
+ # and should never be used in a real application.
35
+ begin
36
+ MAX_RETRIES.times do |retry_number|
37
+ puts "Running request %d of %d..." % [retry_number + 1, MAX_RETRIES]
38
+ # Forcing library to request a new authorization token.
39
+ adwords = AdwordsApi::Api.new
40
+ auth_token = adwords.authorize()
41
+ end
42
+ # Still no challenge, make sure ClientLogin authorization is used.
43
+ raise StandardError, "Failed to get challenge after %d requests." %
44
+ MAX_RETRIES
45
+ rescue AdsCommon::Errors::CaptchaRequiredError => e
46
+ logintoken = e.captcha_token
47
+ end
48
+
49
+ puts "CaptchaRequiredError occurred. To recover download the image and type" +
50
+ " the CAPTCHA below: %s\n" % e.captcha_url
51
+ puts 'Enter code or ENTER to retry: '
52
+ logincaptcha = gets.chomp
53
+
54
+ # Initialize variable for extra parameters.
55
+ credentials = {}
56
+ if logincaptcha and !logincaptcha.empty?
57
+ credentials[:logincaptcha] = logincaptcha
58
+ credentials[:logintoken] = logintoken
59
+ end
60
+
61
+ begin
62
+ adwords = AdwordsApi::Api.new
63
+ auth_token = adwords.authorize(credentials)
64
+ puts "Successfully retrieved authToken: " + auth_token
65
+ rescue AdsCommon::Errors::CaptchaRequiredError => e
66
+ puts 'Invalid CAPTCHA text entered.'
67
+ raise e
68
+ end
69
+ end
70
+
71
+ if __FILE__ == $0
72
+ API_VERSION = :v201302
73
+ MAX_RETRIES = 500
74
+
75
+ begin
76
+ handle_captcha_challenge()
77
+
78
+ # HTTP errors.
79
+ rescue AdsCommon::Errors::HttpError => e
80
+ puts "HTTP Error: %s" % e
81
+
82
+ # API errors.
83
+ rescue AdwordsApi::Errors::ApiException => e
84
+ puts "Message: %s" % e.message
85
+ puts 'Errors:'
86
+ e.errors.each_with_index do |error, index|
87
+ puts "\tError [%d]:" % (index + 1)
88
+ error.each do |field, value|
89
+ puts "\t\t%s: %s" % [field, value]
90
+ end
91
+ end
92
+ end
93
+ end