I have been, or can be if you click on a link and make a purchase, compensated via a cash payment, gift, or something else of value for writing this post. Regardless, I only recommend products or services I use personally and believe will be good for my readers.
I was excited when I read Google had released an API for their Affiliate Network, as I wanted to automate pulling sales data from GAN. But I quickly became disheartened when I realized how difficult it is to use.
Since this was for myself, and not a web-based service that would be used by others, the Simple API method of authorization was good enough. After getting it to work with Picasa, but not GAN, I asked for some help and was introduced to the OAuth 2.0 Playground. This showed me the headers I’d need to send, and how OAuth 2.0 works.
For the record: the Google Affiliate Network API does NOT support Simple API Access. You cannot access the service with an API Key and IP locking.
I now have a working script, and have written up step-by-step instructions on how you can pull orders from GAN automatically each day.
This script is not complete, as it’s up to you to do something with the data once you have it. You can also modify the final call to pull advertisers, instead of orders.
Copy this to a new file (double-click to select-all. I named mine gan.php)
<?php $cPublisherID = ''; $cScope = 'https://www.googleapis.com/auth/gan.readonly'; $cClientID = ''; $cClientSecret = ''; $cRedirectURI = 'urn:ietf:wg:oauth:2.0:oob'; $cAuthCode = ''; $cRefreshToken = ''; $bRefresh = true; if (empty($cAuthCode)) { $rsParams = array( 'response_type' => 'code', 'client_id' => $cClientID, 'redirect_uri' => $cRedirectURI, 'scope' => $cScope ); $cOauthURL = 'https://accounts.google.com/o/oauth2/auth?' . http_build_query($rsParams); echo("Go to\n$cOauthURL\nand enter the given value into \$cAuthCode\n"); exit(); } // ends if (empty($cAuthCode)) elseif (empty($cRefreshToken)) { $cTokenURL = 'https://accounts.google.com/o/oauth2/token'; $rsPostData = array( 'code' => $cAuthCode, 'client_id' => $cClientID, 'client_secret' => $cClientSecret, 'redirect_uri' => $cRedirectURI, 'grant_type' => 'authorization_code', ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $cTokenURL); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $rsPostData); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $cTokenReturn = curl_exec($ch); $oToken = json_decode($cTokenReturn); echo("Enter the following values:\n\n"); echo("\$cRefreshToken = '" . $oToken->refresh_token . "';\n"); } // ends else { // Get a new Access Token $cTokenURL = 'https://accounts.google.com/o/oauth2/token'; $rsPostData = array( 'client_secret' => $cClientSecret, 'grant_type' => 'refresh_token', 'refresh_token' => $cRefreshToken, 'client_id' => $cClientID ); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $cTokenURL); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $rsPostData); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $cTokenReturn = curl_exec($ch); $oToken = json_decode($cTokenReturn); $cAccessToken = $oToken->access_token; // Get the results $cGANURL = 'https://www.googleapis.com/gan/v1beta1/publishers/' . $cPublisherID . '/events'; $cAuthHeader = "Authorization: OAuth " . $cAccessToken; $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTPHEADER, array($cAuthHeader)); curl_setopt($ch, CURLOPT_URL, $cGANURL); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $cJsonReturn = curl_exec($ch); print_r(json_decode($cJsonReturn)); } // ends else from <all authenticated> ?>
Login to your GAN account and get your Publisher ID. It’s the 6-character ID under your name (or your site’s name) in the upper-right once you login. Enter that value here
$cPublisherID = '';
Next, go to https://code.google.com/apis/console/, login, click the drop-down in the left navigation, then choose Create…
and name your project. I named my project GAN Reporting
In the list of services, turn on Google Affiliate Network API
Now click on API Access (left navigation), then click on the button Create an OAuth 2.0 client ID…
Enter “GAN Reporting” for the “Product name” then click Next
Choose “Installed application” for the Application type, then click “Create client ID”
You now have a Client ID, Client secret, and 2 Redirect URIs
Enter your Client ID in the variable $cClientID and the Client secret value in $cClientSecret
$cClientID = 'xxxxxxxxxxxx.apps.googleusercontent.com'; $cClientSecret = 'xxxxxxxxxxxxxxxxx_xxxxxx';
Make sure $cRedirectURI is correct. Then save and upload gan.php (yes, there will be some empty variables… that’s OK!), and run it via command-line or a browser. You’ll see:
[esnagel@ec2 temp]$ php gan.php Go to https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=xxxxxxxxxxxx.apps.googleusercontent.com&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgan.readonly and enter the given value into $cAuthCode
Go to this URL while logged into the Google account associated with your Google Affiliate Network (usually you@gmail.com, but if you’re like me and use Google Apps, you’ll have to open an Incognito window in Chrome to login)
You’ll see a page telling you GAN Reporting (your application) wants access to your GAN data. Click Allow access.
Next, you’ll see an Auth Code.
Copy that value and paste it back into gan.php:
$cAuthCode = 'x/x-xxxxxxxxxx-xxxxxxxxxxxxxxx';
Save, upload and run the script again. Now, you’re given the value for the Refresh Token. Copy that and put it in gan.php:
$cRefreshToken = 'x/xxx_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
Save, upload, and run the script again. Now when you run the script via command-line, you’ll see:
[esnagel@ec2 temp]$ php gan.php stdClass Object ( [kind] => gan#events [items] => Array ( [0] => stdClass Object ( [kind] => gan#event [modifyDate] => 2011-12-21T01:17:47.608Z [eventDate] => 2011-12-21T00:46:38.185Z [orderId] => xxxxxx [commissionableSales] => stdClass Object ( [amount] => xx.xx [currencyCode] => USD ) [status] => ACTIVE [type] => TRANSACTION [products] => Array ( [0] => stdClass Object ( [sku] => @adjustment [quantity] => 1 [unitPrice] => stdClass Object ( [amount] => xx.xx [currencyCode] => USD ) ) ) [advertiserId] => xxxxxx [advertiserName] => xxxxxxxxxxxxx [memberId] => xxxxxxxxxx [earnings] => stdClass Object ( [amount] => xx.xxxx [currencyCode] => USD ) ) ...
This is the result of
print_r(json_decode($cJsonReturn));
At this point, it’s up to you to loop through the items array and do what you want with the data.
I’ll answer some technical questions in the comments, but for the complicated questions, I’ll direct you to my PHP Programmer page where you can email or call me to describe your project and receive an estimate.
Comments
Jhun
Hope you can help me understanding the json code response I get.
I only get the following json code response:
{ “kind”: “gan#events” }
upon running the code:
—————————————————————–
// Get the results
$cGANURL = ‘https://www.googleapis.com/gan/v1beta1/publishers/’ . $cPublisherID . ‘/events’;
$cAuthHeader = “Authorization: OAuth ” . $cAccessToken;
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, array($cAuthHeader));
curl_setopt($ch, CURLOPT_URL, $cGANURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$cJsonReturn = curl_exec($ch);
print_r(json_decode($cJsonReturn));
—————————————————————–
* But changing the “events” to “advertisers” returns advertiser data in json code format.
Thanks you.
Eric Nagel
I’m pretty new to this, but my first thought is: do you have data to return? Did you have sales (orders) in the past 24 hours?
Based on http://code.google.com/apis/gan/v1beta1/events.html, you’re getting a result, but the result is empty.
Try setting eventDateMin and eventDateMax to extend your timeframe.
Brandon Carlson
Eric,
Google doesn’t specify the date format for eventDateMax, I’ve tried several different variations (mm/dd/YYYY, dd/mm/YYYY, mm/dd/yy, dd/mm/yy, and even unix timestamp). Do you know what format we’re supposed to use?
Eric Nagel
I’d guess ISO 8601, as that’s what they return. That’s “c” in PHP’s date() function
Brandon Carlson
That looks right. I tried eventDateMin=2011-09-04T19:56:22.982Z which I found in one of their python samples and that seemed to do the trick.
Thanks for the quick reply, and the awesome post!
Matt
Eric,
Thanks for posting this. This was extremely helpful.
R.
Thank you a lot. I was going crazy with that… Is the first place I find useful information!
Charlie
Eric,
Any ideas as to why I’m getting a blank $cRefreshToken? After running the script with $cAuthCode added I just get:
Enter the following values: $cRefreshToken = ”;
Thanks for your input in advance.
Eric Nagel
After $cTokenReturn gets set (about line 40), echo out that value & see what you get. The refresh token probably isn’t in there, but an error message probably is.
Frank
Hey Eric,
I’m having the same problem as Charlie. I printed the value and I get this message:
{ “error” : “invalid_grant” }
any idea why?
Eric Nagel
I goggled around a bit, and found “I seem to have fixed this by reseting my key/secret for the app.” and “This extremely frustrating error can be remedied by simply re-requesting device code. You will need to authorize your app again, but at least it will work.”
I can’t verify these will work, but when in doubt, start over.
Frank
I went ahead and tried adding ‘approval_prompt’ => ‘force’ to $rsParams and it gets rid of that error, but it’s still prompting
Enter the following values: $cRefreshToken = ”;
I also noticed if you refresh the page, you have to get a new AuthCode
Free iBooks
I’m getting the same problem with cRefreshToken being empty. I tried reseting the keys and still no lock.
Any updates?
MiniGig Custom Web Development
To fix the empty $cRefreshToken issue you need to enable SSL by adding
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
right before curl_exec($ch);
Good Luck! Contact minigig.com if you need web or .NET development!
Eric Nagel
Thanks guys! Hope that works for those having trouble w/ this.
Tim
Thank you so much for this code, extremely grateful.
I did make a couple changes to your code in order to download all transactions for a certain period, as by default there is a limit of 20 transactions, and even if you specify a number the max is 100.
while (true) {
$cGANURL = ‘https://www.googleapis.com/gan/v1beta1/publishers/’.$cPublisherID.’/events?maxResults=100′;
if (isset($cJson->nextPageToken)) $cGANURL .= ‘&pageToken=’.$cJson->nextPageToken;
$cAuthHeader = “Authorization: OAuth “.$cAccessToken;
[existing code]
$cJsonReturn = curl_exec($ch);
$cJson = json_decode($cJsonReturn);
if (!isset($cJson->nextPageToken)) break;
}
Sri
Hi Eric,
What is the validity of the refresh token?
–Sri
Eric Nagel
1 hour
Fahad
Hello Eric,
I wasted lot of my time for finding a php code like this. It helped me a lot.
Thank you very much for this code.
Thanks,
Fahad
Ajay
Is there any other way to retrieve event without refresh token?
Eric Nagel
No – you need this value.
Namrata Mathur
Hi,
Thanks for useful post.
Is there any way to automaticlly allow access when gan reporting request permission to view GAN data, through code. I want to create a cron job to fetch event list.
Thanks in advance.
NM
Eric Nagel
That’s what this script is doing. While I store the variables in the script (as I’m the only account I need to pull data from) I have used this as the basis of a script for a client of mine, and we store the GAN ids in a database.
Namrata Mathur
Hi Eric,
I think my comment was not so clear. Let me explain it again.
– When we first time run this script, it generates the URL for AuthCode.
– Then we open that URL in our browser.
– If we are not logged in to our GAN account then it we sow the login page,
– and at last we saw the message to allow access (the dialog box which you have mentioned as “GAN API Allow Access”).
– After clicking on allow access button we get the AuthCode.
My requirement is to generate/get AuthCode at runtime without using above process. So I want to know if it is possible. If yes then how?
Please reply, I really need help.
Thanks,
Namrata
Eric Nagel
Hi Namrata,
No, this is not possible, as the AuthCode is specific to the Google account that you’re logged in with.
I guess I shouldn’t say it’s not possible… in theory you could automate a Google login, hit the URL, authenticate the app then copy the AuthCode, but I’m not sure how to go about doing that. The first step would be to see if you can simulate a login w/ your GAN username / password.
Namrata Mathur
Hello Eric,
Thanks for reply,
I know how to automate the google login and I can also hit the URL through code, but don’t know how to authenticate the app at runtime. 🙁
Please tell me if you have any idea for that.
Thanks again!
Namrata
Eric Nagel
You’ll have to simulate a browser session with curl or snoopy
Namrata Mathur
Hi Eric,
Thanks again, actually I am using .NET client library for GAN API. I was lurking here coz I wanted to findout a working code so that I can use the login used in that code, and your code was very helpfull for me. I will try to implement your suggetion in my code.
Thanks a lot.
Regards,
Namrata Mathur
Namrata Mathur
Thanks again for this helpful code.
Tom Harrison
Here’s a version written as a Ruby (Rails) library, inspired by your example here. Thanks!!!!
https://gist.github.com/3543368
Mack
where can i get Redirect URIs and how can i create when i want to grab coupon for my website.
Eric Nagel
Hi Mark,
I haven’t used the GAN API for this, so I’m not sure. Check the docs
Andrew
After inserting the $cRefreshToken into code and run the file it shows this message but when i check by below url then i am getting result https://developers.google.com/oauthplayground/?code
stdClass Object ( [error] => stdClass Object ( [errors] => Array ( [0] => stdClass Object ( [domain] => global [reason] => authError [message] => Invalid Credentials [locationType] => header [location] => Authorization ) ) => 401 [message] => Invalid Credentials ) )
Eric Nagel
Make sure you’re using the same account. For example, my GAN account is esnagel@gmail.com, but everything else I use is eric@ericnagel.com. So if you put in your publisherID for one account, then authorize the other, it won’t work.
Brad Moore
So I’m assuming from this discussion thread that there is no way to automate the login and authentication to GAN? I have a script that connects to each of the other networks (i.e. CJ, Linkshare, and Pepperjam) to retrieve transaction details and can automate everything with curl. This script runs with a kron job and is not user attended. I would like to add GAN access to this script, but it doesn’t sound possible.
Am I understanding correctly? And if so, where could I go to learn how to simulate a browser session with curl? I currently use curl to send post requests to a remote site and then process the return data as json, xml, or straight text. What I don’t know how to do is how to login to google and how I would respond to an alert box on the page such as the GAN Reporting is requesting permission… popup.
Any suggestions?
Eric Nagel
I’ve used this (above) method for a couple of clients. The owner of the gmail account must authenticate the app, then the rest can be automated. You can’t get around that first bit.
Ted
Thanks this is great, I play a little bit and is awesome 🙂
One question, since I am not professional , how to handle stdObject, I mean how to parse row by row, tried but don’t have success…
Chris
I struggled with this for a week (was receiving a blank refresh token). After trying a few different scripts, I came back and found the issue with this script. In the refresh token call, you have the redirect_url spelled incorrectly with a I rather than a L.