Hello!
I'm trying to get the AdWords API work on my service's integration. I'm trying to use the CustomerService to get the list of customers associated of the oauth-authenticated account.
What I've done so far:
1. I've went to the Google API dashboard and enabled the Google Ads API from the library
2. I've created an API key (unrestricted for now) from the credentials page
3. I've created an OAuth 2.0 clients ID
Then I configured an API session with the following information:
1. the (unexpired (tested)) access token
2. the refresh token
3. the client id (see previous point 3)
4. the client secret (see previous point 3)
5. the developer key (see previous point 2)
Now trying to call the getCustomers SOAP call, it throws an exception (QuotaCheckError.INVALID_TOKEN_HEADER) triggered by the API key.
My call (stripped out sensible information):
The response (stripped out sensible information):
What can I do to fix this?
Thanks!