Accessing Google Reader subscriptions with OAuth2 access_token

前端 未结 1 746
深忆病人
深忆病人 2021-02-04 22:43

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

相关标签:
1条回答
  • 2021-02-04 23:03

    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.

    0 讨论(0)
提交回复
热议问题