使用Graph API在Facebook墙上共享链接的另一种方法

时间:2012-01-05 09:44:38

标签: php facebook-graph-api

他们的任何替代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>';

2 个答案:

答案 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)

您可以使用/ links端点:https://graph.facebook.com/me/links

使用带有“link”参数的帖子请求。

干杯!