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
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.