他们的任何替代PHP代码在Facebook上分享链接。我正在使用此代码在Facebook墙上分享链接。
$ret_obj = $this->facebook->api('/me/feed', 'POST', array(
'link' => 'www./excample.com',
'message' => 'Posting with the PHP SDK!'
));
echo '<pre>Post ID: ' . $ret_obj['id'] . '</pre>';
答案 0 :(得分:5)
Instead of `feed` use `links`
$ret_obj = $this->facebook->api('/me/links', 'POST', array(
'link' => 'www./excample.com',
'message' => 'Posting with the PHP SDK!'
));
答案 1 :(得分:3)