Facebook 帖子到朋友的墙上
我用以下内容在我自己的墙上发布。
$result = $app->facebook->api('/me/feed/',
'post',
$attachment);
效果很好。现在我需要发布到我朋友的墙上。所以我用了,
$result = $app->facebook->api('/'.$rid.'/feed/',
'post',
$attachment);
但这不起作用。有什么额外的许可什么的吗?
I used following to post on my own wall.
$result = $app->facebook->api('/me/feed/',
'post',
$attachment);
which worked nicely. Now I need to post to my friend's wall. So I used,
$result = $app->facebook->api('/'.$rid.'/feed/',
'post',
$attachment);
This, though is not working. Any extra permission or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档,
publish_stream
应该是您所需要的。(如果这不起作用,那么您应该提供更多信息。您可以进行一些错误处理并检索某种错误代码吗?)
According to the documentation,
publish_stream
should be all you need.(If this does not work, then you ought to provide more information. Can you do some error handling and retrieve an error code of some kind?)