Hi Guilherme,

The NOT_ADS_USER error means that the user whose OAuth credentials you are 
using is not associated with an AdWords account. 
Please generate another refresh/access token, making sure you are signed in 
as a user with access to your test account.

Also, please take a look at the SOAP Primer guide 
<https://developers.google.com/adwords/api/docs/guides/soap>since it 
explains which HTTP header you will need to use when you pass the access 
token.

Cheers,
Thanet, AdWords API Team

On Tuesday, June 2, 2015 at 6:27:17 AM UTC+9, Guilherme Nassim wrote:
>
> Hi,
>
> I am developing an application to daily download a Keyword Performance 
> report using the Adwords API. To get the OAuth 2.0 I pass the followed 
> values:
>
> {
>          iss = "xxxxx...@developer.gserviceaccount.com",
>          scope = "https://www.googleapis.com/auth/adwords";,
>          aud = "https://www.googleapis.com/oauth2/v3/token";,
>          iat = times[0],
>          exp = times[1],
> }
>
> And I receive an access_token back that I use to make an Http request with 
> this headers:
>
>          request.Headers.Add("Authorization", "Bearer " + access_token);
>          request.Headers.Add("developerToken", "xxxxxxxxxxxx");
>          request.Headers.Add("clientCustomerId", "xxx-xxx-xxxx");
>          request.Method = "POST";
>          request.ContentType = "application/x-www-form-urlencoded";
>
> With this body:
>
> __rdxml=<reportDefinition xmlns="
> https://adwords.google.com/api/adwords/cm/v201502
> "><selector><fields>AccountDescriptiveName</fields>
>     <fields>AccountCurrencyCode</fields>
>     <fields>Impressions</fields>
>     <fields>Clicks</fields>
>     <fields>Cost</fields>
>     <fields>AveragePosition</fields>
>     <predicates>
>       <field>Impressions</field>
>       <operator>GREATER_THAN</operator>
>       <values>0</values>
>     </predicates>
>   </selector>
>   <reportName>Custom Keyword Performance Report</reportName>
>   <reportType>KEYWORDS_PERFORMANCE_REPORT</reportType>
>   <dateRangeType>YESTERDAY</dateRangeType>
>   <downloadFormat>CSV</downloadFormat>
> </reportDefinition>
>
> the response that I get back is:
> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
> <reportDownloadError>
>   <ApiError>
>     <type>AuthenticationError.NOT_ADS_USER</type>
>     <trigger>&lt;null&gt;</trigger>
>     <fieldPath></fieldPath>
>   </ApiError>
> </reportDownloadError>
>
> Using OAuth 2.0 Playground application ( 
> https://developers.google.com/oauthplayground/ ) passing the post body 
> with developerToken and clientCustomerId it works.
> What should I do?
>
> Thanks,
>
> Guilherme Foz Nassim
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7bc80007-ebff-49fd-8780-37dde321fa47%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to