1

我有一个 rails4 应用程序,我可以通过它在已登录的用户facebook墙上贴一个墙帖。现在我想做的是阅读给定帖子的 FB 评论,然后在我的应用程序中显示。

我正在使用 Rails 4 和koalagems。以下是我的代码

Koala::Facebook::API.new(<user.oauth_token>).get_object("<facebook post id>")但我不断收到这个错误。

{ "error": { "message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api", "type": "GraphMethodException", "code": 100 } }

而且我在 API 中看不到任何不匹配,奇怪的是我记得大约 3-4 周前我使用了相同的代码,如果我没记错的话,那次工作正常,

这似乎不是身份验证问题,因为如果我使用

Koala::Facebook::API.new(<user.oauth_token>).get_object("me")它工作正常。

4

1 回答 1

0

GraphMethodException Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api当您指定的用户访问令牌无权访问您请求的 Facebook 对象时,您将获得。这是一个更详细的错误报告:

https://developers.facebook.com/bugs/1418832665047223/

于 2014-08-09T04:50:13.500 回答