我创建了一个应用程序,用户可以在其中将消息发布到他们自己的墙上!这是我的代码
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() 有什么问题?