Hello all

I'm using google-api-ads-ruby with Ruby on Rails for an app which is 
tracking some Google Adwords data. Recently I've updated 
google-api-ads-ruby and now I'm get in stuck 
with AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED error on 
CustomerService call.

My task is to get basic Adwords account informantion, such as account name 
and - most important - CustomerId to run further queries.

I'm using omniauth-google-oauth2 gem to get OAuth2 token:

config.omniauth  :adwords_oauth2, 'MY_CLIENT_ID', 'MY_CLIENT_SECRET', scope: 
"adwords", access_type: 'offline', prompt: 'consent', strategy_class: 
OmniAuth::Strategies::AdwordsOauth2

As it was documented in examples here - 
https://github.com/googleads/google-api-ads-ruby/blob/master/adwords_api/examples/v201502/misc/setup_oauth2.rb,
 
having OAuth2 token I can authenticate Adwords user and get his basic info 
using CustomerService.

Here is the excerpt from OmniAuth strategy class:

config_filename = File.join(Rails.root, 'config', 'adwords_api.yml')
@api = AdwordsApi::Api.new(config_filename)

# access_token is OAuth2 token which seems to be valid
token = { access_token: access_token.token, refresh_token: access_token.
refresh_token, expires_in: access_token.expires_in, expires_at: Time.at(
access_token.expires_at)}

@api.authorize({ oauth2_token: token})
service = @api.service(:CustomerService, :v201502)

@raw_info ||= service.get()

So after I've updated google-adwords-api-0.14 to google-adwords-api-0.15, 
I'm getting an AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED exception 
on service.get() call, but according to documentation, CustomerService is 
the only service which does not require CustomerID to run query.

Could you please help me:

- Is this approach to get customer data on auth correct?
- If not what is the right way to get customer data on login?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/9fa756fa-cc30-4375-b78d-607ef8b04cdf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to