在图 api 中显示 Facebook 发布对话框
我正在使用 FB.api("/[user_id]/feed")
方法发布到朋友的留言墙上。 我知道我需要为此提供publish_stream权限,并且它工作得很好。问题是它会自动将流发布到朋友的墙上,没有任何 FB 对话框。这意味着,根据 Facebook 的服务条款,我必须设计自己的 Facebook 式窗口,并在实际发布帖子之前请求批准该帖子。使用 Graph API 时有没有办法显示 FB 对话框?
I'm using FB.api("/[user_id]/feed")
method to publish to a friend's wall.
I know I need the publish_stream permission for this, and it works just fine. Problem is it auto-posts the stream on the friend's wall, no FB dialog whatsoever. That means, by Facebook terms of service, I have to design my own fb like window, and ask to approve the post before I actually post it. Is there a way of showing the FB dialog, when using the Graph API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
FB.ui()
来完成此操作(请参阅示例1,示例2)You can do it with
FB.ui()
(see example1, example2)