我正在开发一个娱乐网站。现在客户希望当用户上传任何视频或图像或任何记录时,应该在facebook新闻源上发送通知。我试过的是--- 我的PHP代码是: -
$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',
);
$attachment = json_encode($attachment);
$result = $facebook->api('/me/feed/','post',$attachment);
但它在facebook.php上给出了错误,我已经下载了这个错误 https://github.com/facebook/php-sdk
答案 0 :(得分:0)
你应该为你正在使用的facebook应用指定一个画布URL而不是sdk。然后,您的链接应与此画布URL共享根URL。