Hi Christian,

You need to use OAuth2 as authorization method to achieve this. The PHP 
client library has support for 
OAuth2, 
https://code.google.com/p/google-api-adwords-php/source/browse/examples/AdWords/Auth/GetRefreshToken.php
 
is a basic code example that shows how to do the OAuth2 flow and generate a 
refresh token.

The overall user experience would be like this:
1. The user logs into your website for the first time.
2. You take the user through the OAuth2 web flow 
(https://developers.google.com/accounts/docs/OAuth2WebServer), where you 
get the user's consent to make API calls on their behalf, and do that when 
they are offline.
3. Upon successful completion of the flow, you will get a refresh token 
from the OAuth2 server. Save that, and the customer's clientCustomerId in 
your local database.
4. Next time you need to make an API call, use the PHP client library to
  (a) Get an OAuth2 access token using the refresh token
  (b) Make an API call to the server using the Access token, your Developer 
token and the clientCustomerId.

Hope this helps. Feel free to follow up with more questions, I'll try to 
answer them or ask the PHP client library owner to follow up with you.

Cheers,
Anash P. Oommen,
AdWords API Advisor.


On Tuesday, November 12, 2013 2:12:30 PM UTC-5, Christian Gibbs wrote:
>
> We have an adwords API key and I want our system to allow other clients to 
> access their MCC account data using our platform.
>
> I would do this in any method possible, OAuth, adwords client library, 
> google apps.
>
> I know this is possible because I have seen other software that does this.
>
> If anyone knows how to achieve this via PHP, that would be great.
>
> Basically, someone would login to their MCC via our platform, and access 
> their adwords data.
>
> Thank you anyone, in advance. I appreciate your time and effort.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to