Now that the Google +1 button is out the Social SEO battle will inevitably be stepped up a gear. We know the search engines are using social shares and likes to impact the rankings, and Google’s +1 button is their way of ensuring at least some of this data is directly in their hands.
So obviously, tracking this data is very important for SEOs, and both Facebook and Twitter have APIs for pulling in Likes and Tweets, but currently we are left without a public API for doing this with Google’s +1 button. With a little digging behind the scenes I managed to find the API they use for the button. So now us SEOs can use it to pull out the Google +1 counts for lists of URLs (if you are interested in the technical details then see the optional section below).
I’ve put together a public Google Spreadsheet which can do all of this automatically for you – you just need to enter a list of URLs and the spreadsheet will pull in the counts for you. To get started, open the spreadsheet (download it right here) and select “Make a copy” from the File menu (you’ll need to be logged into a Google account to do this). Enter the URLs in the the A column (ensuring you pay attention to trailing slashed and they include http:// at the start), and the counts will appear in column B. You should see something like this:
Technical Bits
If you want to write your own solution, you can rip the code from the spreadsheet. The URL for the service is:
https://clients6.google.com/rpc?key=AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ
It is a JSON-RPC setup, meaning you send a JSON formatted request and get a JSON formatted response. The request should be via POST in the following format:
-
[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"http://www.test.com","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]
The request will be returned like so:
-
[{"result": { "kind": "pos#plusones", "id": "http://www.google.com/", "isSetByViewer": false, "metadata": {"type": "URL", "globalCounts": {"count": 3097.0} } } "id": "p"}]
Example PHP Code
If you want to implement this server side, here is some example PHP code to get you going:
-
-
<?php
-
-
$url = "http://www.tomanthony.co.uk/";
-
-
$ch = curl_init();
-
curl_setopt($ch, CURLOPT_URL, "https://clients6.google.com/rpc?key=AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ");
-
curl_setopt($ch, CURLOPT_POST, 1);
-
curl_setopt($ch, CURLOPT_POSTFIELDS, '[{"method":"pos.plusones.get","id":"p","params":{"nolog":true,"id":"' . $url . '","source":"widget","userId":"@viewer","groupId":"@self"},"jsonrpc":"2.0","key":"p","apiVersion":"v1"}]');
-
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
-
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/json'));
-
-
-
$curl_results = curl_exec ($ch);
-
curl_close ($ch);
-
-
$parsed_results = json_decode($curl_results, true);
-
-
echo $parsed_results[0]['result']['metadata']['globalCounts']['count'];
-
-
?>
There is an interactive demo here: Google +1 Button API demo.
Wrap Up
If you want to track social shares and likes and aren’t already setup with a Google Doc for the Twitter/Facebook parts you can head over to this post on Distilled which will help you get going. Combined with the above and you can build a complete system for tracking social search signals. Have fun!
How to get my own API key?
Hi Alexander,
you can create you own Project at https://console.developers.google.com after ca you go to APIs& auth -> Credentials and generat you own API Key.
Best regrats Aleks
PS. Sorry for my English š
I’ve created my own key but it always gives me a “Access Not Configured” error message when I call the API. I have enabled the Google+ API in the API console.
The only way I’ve seen this work is by using the AIzaSyCKSbrvQasunBoV16zDH9R33D88CeLr9gQ key (who’s key is that?), r by not using a key. However, not using a key will get you throttled/blocked after you use it too many times.
Do you have any idea of how I can use my own key?