Dave Forgac
Dave Forgac

Reputation: 3326

Is it possible to access a user's Google +1 (Plus One) history via an API?

I would like to access a user's Google Plus One history

With +1 enabled, the history is saved in your Google profile and optionally can be displayed:

http://www.google.com/+1/button/

It is possible to access this programatically (once the user has given permission via normal Google Authentication and Authorization?)

I have only been able to find information for the API to add the button to sites.

Upvotes: 15

Views: 7130

Answers (3)

bmiskie
bmiskie

Reputation: 627

Check this out....

https://developers.google.com/+/history/

Upvotes: 4

Xyz
Xyz

Reputation: 6013

You can allways try to parse the data used by G+ itself.

The G+ user profile has a tab with all public +1, that can be fetched with

https://plus.google.com/_/plusone/get?oid=<google-plus-id>

It seems to be related to JSON, but with some differences.

Upvotes: 8

John Dyer
John Dyer

Reputation: 1005

Dave, I'm not sure about a user's history, but the count for particular URL is available via a JSON-RPC service (https://clients6.google.com/rpc). Here's a little post on how to: http://www.johndyer.name/post/Getting-Counts-Twitter-Links-Facebook-Likes-Shares-and-Google-Plus-One-Buttons.aspx

I'm guessing that same service can get additional data, but I can't find any public documentation either.

Upvotes: 3

Related Questions