在朋友的墙上发帖

发布于 2024-10-10 09:50:08 字数 71 浏览 2 评论 0原文

如何使用 PHP Graph API 向朋友的墙发帖?我得到了一些 javascript 解决方案。但我需要 PHP 的。谢谢。

How do I post to friend's wall using PHP Graph API? I got some javascript solutions. But I need PHP ones. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

拥抱我好吗 2024-10-17 09:50:08

在此处查看文档 http://developers.facebook.com/docs/reference/api/帖子/

尝试 $facebook->api('/Friend_ID/feed','post',array('message'=$message));。更多参数请参阅文档。

Check the documentation here http://developers.facebook.com/docs/reference/api/post/.

Try $facebook->api('/Friend_ID/feed','post',array('message'=$message));. Refer to the documention for more parameters.

死开点丶别碍眼 2024-10-17 09:50:08

它需要很少的东西
创建 Facebook 应用程序:FB 文档
请求扩展权限以访问用户的照片及其朋友的照片 Facebook 身份验证/权限
FQL + JSDK请求数据JSDK Doc

$attachment = array('message' => 'this is my message',
            'name' => 'This is my demo Facebook application!',
            'caption' => "Caption of the Post",
            'link' => 'http://mylink.com',
            'description' => 'this is a description',
            'picture' => 'http://mysite.com/pic.gif',
            'actions' => array(array('name' => 'Get Search',
                              'link' => 'http://www.google.com'))
            );


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

good luck

it requires few things
Create a Facebook Application: FB Documentation
Request extended permissions to access a user's photos and their friend's photos Facebook Auth / Permissions
FQL + JSDK to request the data JSDK Doc

$attachment = array('message' => 'this is my message',
            'name' => 'This is my demo Facebook application!',
            'caption' => "Caption of the Post",
            'link' => 'http://mylink.com',
            'description' => 'this is a description',
            'picture' => 'http://mysite.com/pic.gif',
            'actions' => array(array('name' => 'Get Search',
                              'link' => 'http://www.google.com'))
            );


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

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