0

我创建了一个应用程序,用户可以在其中将消息发布到他们自己的墙上!这是我的代码

try {
$facebook = new Facebook(FB_APIKEY, FB_SECRET);
$facebook->api_client->session_key = FB_SESSION;
$fetch = array('friends' =>
array('pattern' => '.*',
'query' => 'select uid2 from friend where uid1={$user}'));

$message = 'Hello There ...';
if ($facebook->api_client->stream_publish($message)) //149th line
echo 'message posted successfully';
} catch(Exception $e) {
echo $e . '<br />';
}

它返回错误致命错误:在第 149 行的 /home/webshine/public_html/tutorials/fb/example.php 中调用未定义的方法 stdClass::stream_publish() 有什么问题?

4

1 回答 1

7

要在墙上发帖,您必须使用apifacebook 对象的方法。

像这样。

$facebook->api('/me/feed','post',$params);

您显然正在使用旧的 SDK 方法。

这是更多代码

你如何在 facebook 页面上发布到墙上(不是个人资料)

于 2011-04-07T07:39:56.040 回答