/adx_buyer_api/examples/v201003/add_negative_campaign_criterion.rb
https://code.google.com/ · Ruby · 95 lines · 49 code · 11 blank · 35 comment · 7 complexity · cfd406767d696a812651b60eba140489 MD5 · raw file
- #!/usr/bin/ruby
- #
- # Author:: api.sgomes@gmail.com (S?rgio Gomes)
- #
- # Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
- #
- # License:: Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- # implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- # This example illustrates how to create a negative campaign criterion for a
- # given campaign. To create a campaign, run add_campaign.rb.
- #
- # Tags: CampaignCriterionService.mutate
- require 'rubygems'
- gem 'google-adwords-api'
- require 'adwords_api'
- API_VERSION = :v201003
- def add_negative_campaign_criterion()
- # AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
- # when called without parameters.
- adwords = AdwordsApi::Api.new
- # To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
- # the configuration file or provide your own logger:
- # adwords.logger = Logger.new('adwords_xml.log')
- campaign_criterion_srv =
- adwords.service(:CampaignCriterionService, API_VERSION)
- campaign_id = 'INSERT_CAMPAIGN_ID_HERE'.to_i
- # Prepare for adding criterion.
- operation = {
- :operator => 'ADD',
- :operand => {
- # The 'xsi_type' field allows you to specify the xsi:type of the object
- # being created. It's only necessary when you must provide an explicit
- # type that the client library can't infer.
- :xsi_type => 'NegativeCampaignCriterion',
- :campaign_id => campaign_id,
- :criterion => {
- :xsi_type => 'Placement',
- :url => 'http://jupiter.google.com'
- }
- }
- }
- # Add criterion.
- response = campaign_criterion_srv.mutate([operation])
- campaign_criterion = response[:value].first
- puts 'Campaign criterion id %d was successfully added.' %
- campaign_criterion[:criterion][:id]
- end
- if __FILE__ == $0
- begin
- add_negative_campaign_criterion()
- # Connection error. Likely transitory.
- rescue Errno::ECONNRESET, SOAP::HTTPStreamError, SocketError => e
- puts 'Connection Error: %s' % e
- puts 'Source: %s' % e.backtrace.first
- # API Error.
- rescue AdwordsApi::Errors::ApiException => e
- puts 'API Exception caught.'
- puts 'Message: %s' % e.message
- puts 'Code: %d' % e.code if e.code
- puts 'Trigger: %s' % e.trigger if e.trigger
- puts 'Errors:'
- if e.errors
- e.errors.each_with_index do |error, index|
- puts ' %d. Error type is %s. Fields:' % [index + 1, error[:xsi_type]]
- error.each_pair do |field, value|
- if field != :xsi_type
- puts ' %s: %s' % [field, value]
- end
- end
- end
- end
- end
- end