替代Facebook阅读

有没有其他方法允许某种类型的权限,而不是Facebook中的'read_stream'权限,用户可以阅读或应用程序拖动他们的Facebook feed或home feed?

Facebook很难批准'read_stream'许可,所以我正在寻找一种替代方法来让我们的用户在我们的Rails应用程序中吸引他们最喜欢的故事。 有什么建议么?


没有替代。 您可以使用user_status/me/statuses status的形式获取授权用户的状态帖子。

顺便说一下,它不仅“难”获得read_stream批准,这几乎是不可能的;) - 但出于非常好的原因。 应用程序不应该访问甚至没有授权应用程序的用户的帖子。

编辑:现在还有user_posts ,替代read_stream :https://developers.facebook.com/docs/apps/changelog#v2_3_new_features


做了一些调查。 这是可能的。

您需要访问端点/me/postsuser_posts需要此提要此API可通过read_streamuser_posts权限访问。

https://developers.facebook.com/docs/facebook-login/permissions/v2.3#reference-user_posts

浏览此处获取更多信息:

https://developers.facebook.com/docs/graph-api/reference/v2.3/user/feed

这是相当隐蔽的,但如果你知道去哪里看,你可以找到文档。

链接地址: http://www.djcxy.com/p/35477.html

上一篇: Alternative to Facebook read

下一篇: Can't publish feed to Facebook page by Graph API