如何使用 PHP sdk for Facebook 显示流发布对话框?
我想在发布到墙上之前显示确认发布对话框,如下所示:
我只找到了如何发布而没有确认,例如:
$result = $facebook->api('/me/feed/', 'post', $attachment))
我不确定PHP是否可以,Facebook文档不是最新的.. 。
I would like show the confirmation publish dialog before publish to a wall, like that:
I have only found how to publish without confirmation, such as:
$result = $facebook->api('/me/feed/', 'post', $attachment))
I am not sure whether it is possible with PHP, the Facebook documentation is not up to date...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,可以使用 PHP。您只需要 Facebook 对话框以您想要的方式发布到您的墙上。 URL 将类似于:
请记住,重定向 URI 必须与您在 Facebook 应用程序中设置的相同,否则会引发错误。
Yes it is possible using PHP. You just need the facebook dialog to post to your wall in the manner you want. URL will be like:
Just remember that the redirect URI must be same as you set in your facebook app otherwise it will throw an error.