在朋友的墙上发帖
如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在此处查看文档 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.它需要很少的东西
创建 Facebook 应用程序:FB 文档
请求扩展权限以访问用户的照片及其朋友的照片 Facebook 身份验证/权限
FQL + JSDK请求数据JSDK Doc
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