如何使用 PHP sdk for Facebook 显示流发布对话框?

发布于 2024-12-21 13:34:44 字数 329 浏览 1 评论 0原文

我想在发布到墙上之前显示确认发布对话框,如下所示:

http://blog.hackedexistence.com/wp -content/gallery/facebook/publish-to-wall.png

我只找到了如何发布而没有确认,例如:

$result = $facebook->api('/me/feed/', 'post', $attachment)) 

我不确定PHP是否可以,Facebook文档不是最新的.. 。

I would like show the confirmation publish dialog before publish to a wall, like that:

http://blog.hackedexistence.com/wp-content/gallery/facebook/publish-to-wall.png

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凹づ凸ル 2024-12-28 13:34:44

是的,可以使用 PHP。您只需要 Facebook 对话框以您想要的方式发布到您的墙上。 URL 将类似于:

url=https://www.facebook.com/dialog/feed?app_id=<your appid>&redirect_uri=<your redirecting link>&link=<link u are posting>&message=Join+me+at+this+event.&picture=<picture URL you want to show>&caption=Nation+Wide+Broadcast+System&description=This+is+a+test+of+the+Nation+Wide+Broadcast+System.&name=NationWideBarCrawl

请记住,重定向 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:

url=https://www.facebook.com/dialog/feed?app_id=<your appid>&redirect_uri=<your redirecting link>&link=<link u are posting>&message=Join+me+at+this+event.&picture=<picture URL you want to show>&caption=Nation+Wide+Broadcast+System&description=This+is+a+test+of+the+Nation+Wide+Broadcast+System.&name=NationWideBarCrawl

Just remember that the redirect URI must be same as you set in your facebook app otherwise it will throw an error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文