我用自己的照片在自己的墙上张贴。
$result = $app->facebook->api('/me/feed/',
'post',
$attachment);
效果很好。现在我需要张贴到我朋友的墙上。所以我用了,
$result = $app->facebook->api('/'.$rid.'/feed/',
'post',
$attachment);
这虽然不起作用。任何额外的许可或其他什么?
答案 0 :(得分:2)
根据the documentation,您应该只需要publish_stream
。
(如果这不起作用,那么你应该提供更多信息。你能做一些错误处理并检索某种错误代码吗?)