使用OAuth2 access_token访问Google阅读器订阅

时间:2011-12-16 06:55:41

标签: oauth-2.0 access-token google-reader

是否可以使用OAuth2 access_token访问Google阅读器订阅?我创建了Google API项目,设置域并创建了接收OAuth2令牌的JavaScript代码。它适用于其他Google API,但不适用于Google Reader OPML订阅。有人能暗示我吗?

1 个答案:

答案 0 :(得分:5)

似乎我已经解决了自己。诀窍是,从浏览器获取“代码”令牌后,您应该执行对https://accounts.google.com/o/oauth2/token的调用以获取access_token,token_type,expires_in和refresh_token。

另一个重要的事情是,您应该将范围定义为http://www.google.com/reader/api而不是http://www.google.com/reader/api/ *,如某处所述。