Facebook Android SDK 墙流
我正在为一位希望在应用程序中显示 Facebook 墙帖子的客户开发一个应用程序。 Facebook SDK 示例很好地解释了如何允许用户登录,但这不是我想要的功能。我只希望从所有应用程序实例的单个配置文件中流式传输信息,而无需任何用户登录。如果有人做过类似的事情,我将不胜感激您的建议。我很乐意提供任何其他详细信息。
I am developing an application for a client who wishes to display their Facebook wall posts in the application. The Facebook SDK examples do a wonderful job explaining how to allow users to sign in, but this is not the functionality I desire. I only wish to stream information from a single profile for all application instances without any users having to sign in. If anyone has done anything similar, I would appreciate your suggestions. I will gladly provide any additional details.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种选择是将社交插件之一嵌入网络视图中。否则,您可以在应用程序中嵌入应用程序令牌,然后对 /pageid/feed 进行图形 api 调用,并使用 json 结果显示 feed 条目。
One option would be to embed one of the social plugins inside a web view. Otherwise, you could embed an application token inside the application and then make a graph api call to /pageid/feed and use the json result to show the feed entries.
您的客户端还可以创建一个公共页面,然后只需通过 RSS 获取其提要,无需登录,在这种情况下也无需访问令牌。 RSS feed 的 URL 应该是:
希望这有帮助
Your client can also create a page which is public and then just get its feed simply via RSS, no need to sign-in and no need for access token in this case. Url for RSS feed should be:
hope this helps