Hi everybody !

I'm new to Adwords API and on this forum. Feel free to comment if necessary!

I am currently developing a small web application that allows a visitor to 
give me access to its Adwords account then I am able to retrieve data from 
its campaigns.

I also need to detect if the customer has several accounts in order to make 
him choose from a list.

I read and tried a lot of documentation and I understand the principle of 
authentication.

I'm currently stuck and I can not find answer to my problems.

Here's the example of the current code which I work. This allows a user to 
authorize and then return it to my page and then I am able to retrieve an 
access token and a refresh token.

My problem is that I'm not able to retrieve information on the visitor and 
I dont know how to launch a first query to retrieve a list of user accounts.

Any ideas?

Thank you !



<?php

require_once 'Google/Api/Ads/AdWords/Lib/AdWordsUser.php';
 
$clientId = "xxxx.apps.googleusercontent.com";
$clientSecret = "xxxxxxxxxxxx";
$callbackUrl = "http://www.xxxx.com";;

function GetOAuth2Credential($user, $callbackUrl) {
try{
$redirectUri = $callbackUrl;
$offline = TRUE;
$extra_para = array('approval_prompt' => 'force');
// Get the authorization URL for the OAuth2 token.
// Pass in a redirect URL back to the application,
// Passing true for the second parameter ($offline) will provide us a 
refresh
// token which can used be refresh the access token when it expires.
$OAuth2Handler = $user->GetOAuth2Handler();
$authorizationUrl = 
$OAuth2Handler->GetAuthorizationUrl($user->GetOAuth2Info(), $redirectUri, 
$offline, $extra_para);
}
catch(Exception $e)
{
print_r($e->getMessage());
}
return $authorizationUrl;
}

if ($_REQUEST['code']){
$authCode = $_REQUEST['code'];
// --------------------
// Generate
// --------------------
$url = "https://accounts.google.com/o/oauth2/token";;
$params = array(
"code" => $authCode,
"client_id" => $clientId,
"client_secret" => $clientSecret,
"redirect_uri" => $callbackUrl,
"grant_type" => "authorization_code"
);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
curl_setopt($curl, CURLOPT_ENCODING, "");
$curlData = curl_exec($curl);
curl_close($curl);
$result = json_decode ($curlData);
// print_r($result);
$access_token = $result->access_token;
$refresh_token = $result->refresh_token;
$token_type = $result->token_type;
$expires_in = $result->expires_in;
echo "<h3 style=\"padding:0; margin:0;\">General informations</h3>";
echo "<strong>My client id --></strong> ".$clientId;
echo "<br><strong>My secret key --></strong> ".$clientSecret;
echo "<br><strong>Callback url --></strong> ".$callbackUrl;
echo "<br><br>";
echo "<h3 style=\"padding:0; margin:0;\">Autorisation code</h3>";
echo "<strong>Auth code --></strong> ".$authCode;
echo "<br><br>";
echo "<h3 style=\"padding:0; margin:0;\">Generate auth token</h3>";
echo "<strong>Access token --></strong> ".$access_token;
echo "<br><strong>Refresh token --></strong> ".$refresh_token;
echo "<br><strong>Token type --></strong> ".$token_type;
echo "<br><strong>Expires in --></strong> ".$expires_in;
echo "<br><br><br><br>";
// --------------------
// I need to access user data. Whats next ?
// --------------------
}
else
{
// Create a new user and set the oAuth settings
$user = new AdWordsUser();
$user->LogAll();
$user->SetOAuth2Info(array(
"client_id" => $clientId,
"client_secret" => $clientSecret
));
// Generate an authorization URL given the callback URL
$authUrl = GetOAuth2Credential($user, $callbackUrl);
//header("Location:". $authUrl);
echo '<a href="'.$authUrl.'">Start process</a>';

}
?>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/95ee3a35-2d27-4cac-81f6-37a2b6c7a03f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to