google-dfp-api 0.2.0
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.
- data/COPYING +201 -0
- data/ChangeLog +10 -0
- data/README +210 -0
- data/Rakefile +83 -0
- data/examples/v201101/common/error_handling.rb +76 -0
- data/examples/v201101/company_service/create_companies.rb +82 -0
- data/examples/v201101/company_service/get_all_companies.rb +92 -0
- data/examples/v201101/company_service/get_companies_by_statement.rb +88 -0
- data/examples/v201101/company_service/get_company.rb +72 -0
- data/examples/v201101/company_service/update_companies.rb +95 -0
- data/examples/v201101/creative_service/copy_image_creatives.rb +117 -0
- data/examples/v201101/creative_service/create_creatives.rb +109 -0
- data/examples/v201101/creative_service/get_all_creatives.rb +93 -0
- data/examples/v201101/creative_service/get_creative.rb +72 -0
- data/examples/v201101/creative_service/get_creatives_by_statement.rb +87 -0
- data/examples/v201101/creative_service/update_creatives.rb +98 -0
- data/examples/v201101/custom_targeting_service/create_custom_targeting_keys_and_values.rb +118 -0
- data/examples/v201101/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
- data/examples/v201101/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
- data/examples/v201101/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
- data/examples/v201101/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
- data/examples/v201101/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
- data/examples/v201101/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
- data/examples/v201101/custom_targeting_service/update_custom_targeting_values.rb +106 -0
- data/examples/v201101/forecast_service/get_forecast.rb +103 -0
- data/examples/v201101/forecast_service/get_forecast_by_id.rb +80 -0
- data/examples/v201101/inventory_service/create_ad_units.rb +98 -0
- data/examples/v201101/inventory_service/deactivate_ad_units.rb +119 -0
- data/examples/v201101/inventory_service/get_ad_unit.rb +72 -0
- data/examples/v201101/inventory_service/get_ad_units_by_statement.rb +96 -0
- data/examples/v201101/inventory_service/get_all_ad_units.rb +93 -0
- data/examples/v201101/inventory_service/update_ad_units.rb +94 -0
- data/examples/v201101/line_item_creative_association_service/create_licas.rb +94 -0
- data/examples/v201101/line_item_creative_association_service/deactivate_licas.rb +127 -0
- data/examples/v201101/line_item_creative_association_service/get_all_licas.rb +95 -0
- data/examples/v201101/line_item_creative_association_service/get_lica.rb +77 -0
- data/examples/v201101/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
- data/examples/v201101/line_item_creative_association_service/update_licas.rb +92 -0
- data/examples/v201101/line_item_service/activate_line_items.rb +131 -0
- data/examples/v201101/line_item_service/create_line_items.rb +141 -0
- data/examples/v201101/line_item_service/get_all_line_items.rb +94 -0
- data/examples/v201101/line_item_service/get_line_item.rb +74 -0
- data/examples/v201101/line_item_service/get_line_items_by_statement.rb +89 -0
- data/examples/v201101/line_item_service/target_custom_criteria.rb +135 -0
- data/examples/v201101/line_item_service/update_line_items.rb +110 -0
- data/examples/v201101/network_service/get_all_networks.rb +74 -0
- data/examples/v201101/network_service/get_current_network.rb +66 -0
- data/examples/v201101/order_service/approve_orders.rb +116 -0
- data/examples/v201101/order_service/create_orders.rb +93 -0
- data/examples/v201101/order_service/get_all_orders.rb +93 -0
- data/examples/v201101/order_service/get_order.rb +74 -0
- data/examples/v201101/order_service/get_orders_by_statement.rb +90 -0
- data/examples/v201101/order_service/update_orders.rb +95 -0
- data/examples/v201101/placement_service/create_placements.rb +128 -0
- data/examples/v201101/placement_service/deactivate_placements.rb +118 -0
- data/examples/v201101/placement_service/get_all_placements.rb +93 -0
- data/examples/v201101/placement_service/get_placement.rb +74 -0
- data/examples/v201101/placement_service/get_placements_by_statement.rb +86 -0
- data/examples/v201101/placement_service/update_placements.rb +96 -0
- data/examples/v201101/publisher_query_language_service/get_all_cities.rb +85 -0
- data/examples/v201101/publisher_query_language_service/get_all_countries.rb +85 -0
- data/examples/v201101/publisher_query_language_service/get_all_metros.rb +85 -0
- data/examples/v201101/publisher_query_language_service/get_all_regions.rb +85 -0
- data/examples/v201101/report_service/download_report.rb +81 -0
- data/examples/v201101/report_service/run_delivery_report.rb +89 -0
- data/examples/v201101/report_service/run_inventory_report.rb +90 -0
- data/examples/v201101/report_service/run_sales_report.rb +89 -0
- data/examples/v201101/user_service/create_users.rb +89 -0
- data/examples/v201101/user_service/deactivate_users.rb +99 -0
- data/examples/v201101/user_service/get_all_roles.rb +73 -0
- data/examples/v201101/user_service/get_all_users.rb +92 -0
- data/examples/v201101/user_service/get_user.rb +73 -0
- data/examples/v201101/user_service/get_users_by_statement.rb +79 -0
- data/examples/v201101/user_service/update_users.rb +89 -0
- data/lib/dfp_api.rb +142 -0
- data/lib/dfp_api/api_config.rb +126 -0
- data/lib/dfp_api/credential_handler.rb +60 -0
- data/lib/dfp_api/errors.rb +59 -0
- data/lib/dfp_api/extensions.rb +54 -0
- data/lib/dfp_api/v201101/company_service.rb +52 -0
- data/lib/dfp_api/v201101/company_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/creative_service.rb +52 -0
- data/lib/dfp_api/v201101/creative_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/custom_targeting_service.rb +60 -0
- data/lib/dfp_api/v201101/custom_targeting_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/forecast_service.rb +36 -0
- data/lib/dfp_api/v201101/forecast_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/inventory_service.rb +56 -0
- data/lib/dfp_api/v201101/inventory_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/line_item_creative_association_service.rb +56 -0
- data/lib/dfp_api/v201101/line_item_creative_association_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/line_item_service.rb +56 -0
- data/lib/dfp_api/v201101/line_item_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/network_service.rb +40 -0
- data/lib/dfp_api/v201101/network_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/order_service.rb +56 -0
- data/lib/dfp_api/v201101/order_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/placement_service.rb +56 -0
- data/lib/dfp_api/v201101/placement_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/publisher_query_language_service.rb +32 -0
- data/lib/dfp_api/v201101/publisher_query_language_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/report_service.rb +40 -0
- data/lib/dfp_api/v201101/report_service_registry.rb +37 -0
- data/lib/dfp_api/v201101/user_service.rb +60 -0
- data/lib/dfp_api/v201101/user_service_registry.rb +37 -0
- metadata +204 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
#!/usr/bin/ruby
|
|
2
|
+
#
|
|
3
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
|
4
|
+
#
|
|
5
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
|
6
|
+
#
|
|
7
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
# you may not use this file except in compliance with the License.
|
|
9
|
+
# You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
16
|
+
# implied.
|
|
17
|
+
# See the License for the specific language governing permissions and
|
|
18
|
+
# limitations under the License.
|
|
19
|
+
#
|
|
20
|
+
# This example updates the destination URL of all image creatives up to the
|
|
21
|
+
# first 500. To determine which image creatives exist, run get_all_creatives.rb.
|
|
22
|
+
#
|
|
23
|
+
# Tags: CreativeService.getCreativesByStatement, CreativeService.updateCreatives
|
|
24
|
+
|
|
25
|
+
require 'rubygems'
|
|
26
|
+
require 'dfp_api'
|
|
27
|
+
|
|
28
|
+
API_VERSION = :v201101
|
|
29
|
+
|
|
30
|
+
def update_creatives()
|
|
31
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
|
32
|
+
dfp = DfpApi::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
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
|
37
|
+
|
|
38
|
+
# Get the CreativeService.
|
|
39
|
+
creative_service = dfp.service(:CreativeService, API_VERSION)
|
|
40
|
+
|
|
41
|
+
# Create a statement to get first 500 image creatives.
|
|
42
|
+
statement = {
|
|
43
|
+
:query => "WHERE creativeType = :creative_type LIMIT 500",
|
|
44
|
+
:values => [
|
|
45
|
+
{:key => 'creative_type',
|
|
46
|
+
:value => {:value => 'ImageCreative', :xsi_type => 'TextValue'}}
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
# Get creatives by statement.
|
|
51
|
+
page = creative_service.get_creatives_by_statement(statement)
|
|
52
|
+
|
|
53
|
+
if page[:results]
|
|
54
|
+
creatives = page[:results]
|
|
55
|
+
|
|
56
|
+
# Update each local creative object by changing its destination URL.
|
|
57
|
+
creatives.each do |creative|
|
|
58
|
+
creative[:destination_url] = 'http://news.google.com'
|
|
59
|
+
# Savon doesn't get us xsi_type back yet so we have to specify it.
|
|
60
|
+
creative[:xsi_type] = 'ImageCreative'
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# Update the creatives on the server.
|
|
64
|
+
return_creatives = creative_service.update_creatives(creatives)
|
|
65
|
+
|
|
66
|
+
if return_creatives
|
|
67
|
+
return_creatives.each do |creative|
|
|
68
|
+
puts "Creative with ID: %d, name: %s and url: [%s] was updated." %
|
|
69
|
+
[creative[:id], creative[:name], creative[:destination_url]]
|
|
70
|
+
end
|
|
71
|
+
else
|
|
72
|
+
raise 'No creatives were updated.'
|
|
73
|
+
end
|
|
74
|
+
else
|
|
75
|
+
puts 'No creatives found to update.'
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if __FILE__ == $0
|
|
80
|
+
begin
|
|
81
|
+
update_creatives()
|
|
82
|
+
|
|
83
|
+
# HTTP errors.
|
|
84
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
85
|
+
puts "HTTP Error: %s" % e
|
|
86
|
+
|
|
87
|
+
# API errors.
|
|
88
|
+
rescue DfpApi::Errors::ApiException => e
|
|
89
|
+
puts "Message: %s" % e.message
|
|
90
|
+
puts 'Errors:'
|
|
91
|
+
e.errors.each_with_index do |error, index|
|
|
92
|
+
puts "\tError [%d]:" % (index + 1)
|
|
93
|
+
error.each do |field, value|
|
|
94
|
+
puts "\t\t%s: %s" % [field, value]
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
#!/usr/bin/ruby
|
|
2
|
+
#
|
|
3
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
|
4
|
+
#
|
|
5
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
|
6
|
+
#
|
|
7
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
# you may not use this file except in compliance with the License.
|
|
9
|
+
# You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
16
|
+
# implied.
|
|
17
|
+
# See the License for the specific language governing permissions and
|
|
18
|
+
# limitations under the License.
|
|
19
|
+
#
|
|
20
|
+
# This example creates new custom targeting keys and values. To determine which
|
|
21
|
+
# custom targeting keys and values exist, run
|
|
22
|
+
# get_all_custom_targeting_keys_and_values.rb. To target these custom targeting
|
|
23
|
+
# keys and values, run target_custom_criteria.rb.
|
|
24
|
+
#
|
|
25
|
+
# Tags: CustomTargetingService.createCustomTargetingKeys,
|
|
26
|
+
# CustomTargetingService.createCustomTargetingValues
|
|
27
|
+
|
|
28
|
+
require 'rubygems'
|
|
29
|
+
require 'dfp_api'
|
|
30
|
+
|
|
31
|
+
API_VERSION = :v201101
|
|
32
|
+
|
|
33
|
+
def create_custom_targeting_keys_and_values()
|
|
34
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
|
35
|
+
dfp = DfpApi::Api.new
|
|
36
|
+
|
|
37
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
38
|
+
# the configuration file or provide your own logger:
|
|
39
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
|
40
|
+
|
|
41
|
+
# Get the CustomTargetingService.
|
|
42
|
+
custom_targeting_service = dfp.service(:CustomTargetingService, API_VERSION)
|
|
43
|
+
|
|
44
|
+
# Create predefined key.
|
|
45
|
+
gender_key = {:display_name => 'gender', :name => 'g', :type => 'PREDEFINED'}
|
|
46
|
+
|
|
47
|
+
# Create free-form key.
|
|
48
|
+
car_model_key = {:display_name => 'car model', :name => 'c',
|
|
49
|
+
:type => 'FREEFORM'}
|
|
50
|
+
|
|
51
|
+
# Create the custom targeting keys on the server.
|
|
52
|
+
return_keys = custom_targeting_service.create_custom_targeting_keys(
|
|
53
|
+
[gender_key, car_model_key])
|
|
54
|
+
|
|
55
|
+
if return_keys
|
|
56
|
+
return_keys.each do |key|
|
|
57
|
+
puts ("Custom targeting key ID: %d, name: %s and display name: %s" +
|
|
58
|
+
" was created.") % [key[:id], key[:name], key[:display_name]]
|
|
59
|
+
end
|
|
60
|
+
else
|
|
61
|
+
raise 'No keys were created.'
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
# Create custom targeting value for the predefined gender key.
|
|
65
|
+
gender_male_value = {:custom_targeting_key_id => return_keys[0][:id],
|
|
66
|
+
:display_name => 'male', :match_type => 'EXACT'}
|
|
67
|
+
# Name is set to 1 so that the actual name can be hidden from website users.
|
|
68
|
+
gender_male_value[:name] = '1'
|
|
69
|
+
|
|
70
|
+
# Create another custom targeting value for the same key.
|
|
71
|
+
gender_female_value = {:custom_targeting_key_id => return_keys[0][:id],
|
|
72
|
+
:display_name => 'female', :name => '2', :match_type => 'EXACT'}
|
|
73
|
+
|
|
74
|
+
# Create custom targeting value for the free-form age key. These are values
|
|
75
|
+
# that would be suggested in the UI or can be used when targeting
|
|
76
|
+
# with a free-form custom criterion.
|
|
77
|
+
car_model_honda_civic_value = {
|
|
78
|
+
:custom_targeting_key_id => return_keys[1][:id],
|
|
79
|
+
:display_name => 'honda civic', :name => 'honda civic'}
|
|
80
|
+
# Setting match type to exact will match exactly "honda civic".
|
|
81
|
+
car_model_honda_civic_value[:match_type] = 'EXACT'
|
|
82
|
+
|
|
83
|
+
# Create the custom targeting values on the server.
|
|
84
|
+
return_values = custom_targeting_service.create_custom_targeting_values(
|
|
85
|
+
[gender_male_value, gender_female_value, car_model_honda_civic_value])
|
|
86
|
+
|
|
87
|
+
if return_values
|
|
88
|
+
return_values.each do |value|
|
|
89
|
+
puts ("A custom targeting value ID: %d, name: %s and display name: %s" +
|
|
90
|
+
" was created for key ID: %d.") % [value[:id], value[:name],
|
|
91
|
+
value[:display_name], value[:custom_targeting_key_id]]
|
|
92
|
+
end
|
|
93
|
+
else
|
|
94
|
+
raise 'No values were created.'
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
if __FILE__ == $0
|
|
100
|
+
begin
|
|
101
|
+
create_custom_targeting_keys_and_values()
|
|
102
|
+
|
|
103
|
+
# HTTP errors.
|
|
104
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
105
|
+
puts "HTTP Error: %s" % e
|
|
106
|
+
|
|
107
|
+
# API errors.
|
|
108
|
+
rescue DfpApi::Errors::ApiException => e
|
|
109
|
+
puts "Message: %s" % e.message
|
|
110
|
+
puts 'Errors:'
|
|
111
|
+
e.errors.each_with_index do |error, index|
|
|
112
|
+
puts "\tError [%d]:" % (index + 1)
|
|
113
|
+
error.each do |field, value|
|
|
114
|
+
puts "\t\t%s: %s" % [field, value]
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
end
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
#!/usr/bin/ruby
|
|
2
|
+
#
|
|
3
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
|
4
|
+
#
|
|
5
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
|
6
|
+
#
|
|
7
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
# you may not use this file except in compliance with the License.
|
|
9
|
+
# You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
16
|
+
# implied.
|
|
17
|
+
# See the License for the specific language governing permissions and
|
|
18
|
+
# limitations under the License.
|
|
19
|
+
#
|
|
20
|
+
# This example deletes custom targeting key by its name. To determine which
|
|
21
|
+
# custom targeting keys exist, run get_all_custom_targeting_keys_and_values.rb.
|
|
22
|
+
#
|
|
23
|
+
# Tags: CustomTargetingService.getCustomTargetingKeysByStatement,
|
|
24
|
+
# CustomTargetingService.performCustomTargetingKeyAction
|
|
25
|
+
|
|
26
|
+
require 'rubygems'
|
|
27
|
+
require 'dfp_api'
|
|
28
|
+
|
|
29
|
+
API_VERSION = :v201101
|
|
30
|
+
PAGE_SIZE = 500
|
|
31
|
+
|
|
32
|
+
def delete_custom_targeting_keys()
|
|
33
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
|
34
|
+
dfp = DfpApi::Api.new
|
|
35
|
+
|
|
36
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
37
|
+
# the configuration file or provide your own logger:
|
|
38
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
|
39
|
+
|
|
40
|
+
# Get the CustomTargetingService.
|
|
41
|
+
custom_targeting_service = dfp.service(:CustomTargetingService, API_VERSION)
|
|
42
|
+
|
|
43
|
+
# Set the name of the custom targeting key to delete.
|
|
44
|
+
custom_targeting_key_name = 'INSERT_CUSTOM_TARGETING_KEY_NAME_HERE'
|
|
45
|
+
|
|
46
|
+
# Create statement to only select custom targeting key by the given name.
|
|
47
|
+
statement_text = 'WHERE name = :name'
|
|
48
|
+
|
|
49
|
+
# Define initial values.
|
|
50
|
+
offset = 0
|
|
51
|
+
page = Hash.new
|
|
52
|
+
custom_target_key_ids = Array.new
|
|
53
|
+
statement = {
|
|
54
|
+
:values => [
|
|
55
|
+
{:key => 'name',
|
|
56
|
+
:value => {:value => custom_targeting_key_name,
|
|
57
|
+
:xsi_type => 'TextValue'}
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
begin
|
|
63
|
+
# Create a statement to page through custom targeting keys.
|
|
64
|
+
statement[:query] = statement_text + " LIMIT %d OFFSET %d" %
|
|
65
|
+
[PAGE_SIZE, offset]
|
|
66
|
+
|
|
67
|
+
page = custom_targeting_service.get_custom_targeting_keys_by_statement(
|
|
68
|
+
statement)
|
|
69
|
+
|
|
70
|
+
if page[:results]
|
|
71
|
+
# Increase query offset by page size.
|
|
72
|
+
offset += PAGE_SIZE
|
|
73
|
+
page[:results].each do |key|
|
|
74
|
+
# Add key ID to the list for deletion.
|
|
75
|
+
custom_target_key_ids << key[:id]
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
end while offset < page[:total_result_set_size]
|
|
79
|
+
|
|
80
|
+
# Print a footer.
|
|
81
|
+
puts "Number of custom targeting keys to be deleted: %d" %
|
|
82
|
+
custom_target_key_ids.size
|
|
83
|
+
|
|
84
|
+
if !(custom_target_key_ids.empty?)
|
|
85
|
+
# Modify statement for action.
|
|
86
|
+
statement = {:query => "WHERE id IN (%s)" %
|
|
87
|
+
[custom_target_key_ids.join(', ')]}
|
|
88
|
+
|
|
89
|
+
# Perform action.
|
|
90
|
+
result = custom_targeting_service.perform_custom_targeting_key_action(
|
|
91
|
+
{:xsi_type => 'DeleteCustomTargetingKeys'}, statement)
|
|
92
|
+
|
|
93
|
+
# Display results.
|
|
94
|
+
if result and result[:num_changes] > 0
|
|
95
|
+
puts "Number of custom targeting keys deleted: %d" % result[:num_changes]
|
|
96
|
+
else
|
|
97
|
+
puts 'No custom targeting keys were deleted.'
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
if __FILE__ == $0
|
|
103
|
+
begin
|
|
104
|
+
delete_custom_targeting_keys()
|
|
105
|
+
|
|
106
|
+
# HTTP errors.
|
|
107
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
108
|
+
puts "HTTP Error: %s" % e
|
|
109
|
+
|
|
110
|
+
# API errors.
|
|
111
|
+
rescue DfpApi::Errors::ApiException => e
|
|
112
|
+
puts "Message: %s" % e.message
|
|
113
|
+
puts 'Errors:'
|
|
114
|
+
e.errors.each_with_index do |error, index|
|
|
115
|
+
puts "\tError [%d]:" % (index + 1)
|
|
116
|
+
error.each do |field, value|
|
|
117
|
+
puts "\t\t%s: %s" % [field, value]
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
end
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
#!/usr/bin/ruby
|
|
2
|
+
#
|
|
3
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
|
4
|
+
#
|
|
5
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
|
6
|
+
#
|
|
7
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
# you may not use this file except in compliance with the License.
|
|
9
|
+
# You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
16
|
+
# implied.
|
|
17
|
+
# See the License for the specific language governing permissions and
|
|
18
|
+
# limitations under the License.
|
|
19
|
+
#
|
|
20
|
+
# This example deletes custom targeting values for a given custom targeting key.
|
|
21
|
+
# To determine which custom targeting keys and values exist, run
|
|
22
|
+
# get_all_custom_targeting_keys_and_values.rb.
|
|
23
|
+
#
|
|
24
|
+
# Tags: CustomTargetingService.getCustomTargetingValuesByStatement,
|
|
25
|
+
# CustomTargetingService.performCustomTargetingValueAction
|
|
26
|
+
|
|
27
|
+
require 'rubygems'
|
|
28
|
+
require 'dfp_api'
|
|
29
|
+
|
|
30
|
+
API_VERSION = :v201101
|
|
31
|
+
PAGE_SIZE = 500
|
|
32
|
+
|
|
33
|
+
def delete_custom_targeting_values()
|
|
34
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
|
35
|
+
dfp = DfpApi::Api.new
|
|
36
|
+
|
|
37
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
38
|
+
# the configuration file or provide your own logger:
|
|
39
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
|
40
|
+
|
|
41
|
+
# Get the CustomTargetingService.
|
|
42
|
+
custom_targeting_service = dfp.service(:CustomTargetingService, API_VERSION)
|
|
43
|
+
|
|
44
|
+
# Set ID of the custom targeting key to delete values from.
|
|
45
|
+
custom_targeting_key_id = 'INSERT_CUSTOM_TARGETING_KEY_ID_HERE'.to_i
|
|
46
|
+
|
|
47
|
+
# Create statement to only select custom values by the given custom targeting
|
|
48
|
+
# key ID.
|
|
49
|
+
statement_text = 'WHERE customTargetingKeyId = :key_id'
|
|
50
|
+
|
|
51
|
+
# Define initial values.
|
|
52
|
+
offset = 0
|
|
53
|
+
page = Hash.new
|
|
54
|
+
custom_target_value_ids = Array.new
|
|
55
|
+
statement = {
|
|
56
|
+
:values => [
|
|
57
|
+
{:key => 'key_id',
|
|
58
|
+
:value => {:value => custom_targeting_key_id,
|
|
59
|
+
:xsi_type => 'NumberValue'}
|
|
60
|
+
}
|
|
61
|
+
]
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
begin
|
|
65
|
+
# Create a statement to page through custom targeting values.
|
|
66
|
+
statement[:query] = statement_text + " LIMIT %d OFFSET %d" %
|
|
67
|
+
[PAGE_SIZE, offset]
|
|
68
|
+
|
|
69
|
+
# Get custom targeting values by statement.
|
|
70
|
+
page = custom_targeting_service.get_custom_targeting_values_by_statement(
|
|
71
|
+
statement)
|
|
72
|
+
|
|
73
|
+
if page[:results]
|
|
74
|
+
# Increase query offset by page size.
|
|
75
|
+
offset += PAGE_SIZE
|
|
76
|
+
page[:results].each do |value|
|
|
77
|
+
# Add value ID to the list for deletion.
|
|
78
|
+
custom_target_value_ids << value[:id]
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
end while offset < page[:total_result_set_size]
|
|
82
|
+
|
|
83
|
+
# Print a footer.
|
|
84
|
+
puts "Number of custom targeting value to be deleted: %d" %
|
|
85
|
+
custom_target_value_ids.size
|
|
86
|
+
|
|
87
|
+
if !(custom_target_value_ids.empty?)
|
|
88
|
+
# Modify statement for action, note, values are still present.
|
|
89
|
+
statement[:query] = statement_text + " AND id IN (%s)" %
|
|
90
|
+
[custom_target_value_ids.join(', ')]
|
|
91
|
+
|
|
92
|
+
# Perform action.
|
|
93
|
+
result = custom_targeting_service.perform_custom_targeting_value_action(
|
|
94
|
+
{:xsi_type => 'DeleteCustomTargetingValues'}, statement)
|
|
95
|
+
|
|
96
|
+
# Display results.
|
|
97
|
+
if result and result[:num_changes] > 0
|
|
98
|
+
puts "Number of custom targeting values deleted: %d" %
|
|
99
|
+
result[:num_changes]
|
|
100
|
+
else
|
|
101
|
+
puts 'No custom targeting values were deleted.'
|
|
102
|
+
end
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
if __FILE__ == $0
|
|
107
|
+
begin
|
|
108
|
+
delete_custom_targeting_values()
|
|
109
|
+
|
|
110
|
+
# HTTP errors.
|
|
111
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
112
|
+
puts "HTTP Error: %s" % e
|
|
113
|
+
|
|
114
|
+
# API errors.
|
|
115
|
+
rescue DfpApi::Errors::ApiException => e
|
|
116
|
+
puts "Message: %s" % e.message
|
|
117
|
+
puts 'Errors:'
|
|
118
|
+
e.errors.each_with_index do |error, index|
|
|
119
|
+
puts "\tError [%d]:" % (index + 1)
|
|
120
|
+
error.each do |field, value|
|
|
121
|
+
puts "\t\t%s: %s" % [field, value]
|
|
122
|
+
end
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
end
|