Is that possible to access Google Reader subscriptions using OAuth2 access_token? I've created Google APIs project, setting up domain and created javascript code that receives OAuth2 token. It works well for other Google APIs, but not for Google Reader OPML subscriptions. Could anyone hint me?
Asked
Active
Viewed 1,488 times
2
-
http://stackoverflow.com/q/12724154/1244210 – wfwei Oct 04 '12 at 09:54
1 Answers
5
Seems I've solved myself. The trick was that after obtaining "code" token from browser, you should perform call to https://accounts.google.com/o/oauth2/token to obtain access_token, token_type, expires_in and refresh_token.
Another important thing is that you should define scope as http://www.google.com/reader/api not http://www.google.com/reader/api/* as stated somewhere.

Archer
- 5,073
- 8
- 50
- 96
-
Hello, I am trying to use the Google Oauth 2.0 playground to access the Google Reader APIs. I am using the http://www.google.com/reader/api/ scope, but it doesn't seem to work. Any help would highly appreciated. Thanks. – Saqib Ali Jan 02 '13 at 02:15
-
http://stackoverflow.com/questions/12724154/how-to-access-google-feedsreader-with-oauth2-0 – Archer Jan 05 '13 at 14:19