Anyone know the API call to page through your facebook status?
+4
A:
$facebook->api_client->status_get('','5');
See http://developers.facebook.com/news.php?blog=1&story=193
CodeJoust
2009-10-26 01:06:22
thanks for the pointer to this blog post.
taylorparsons
2009-10-26 03:00:39
A:
I have a error when use status_get
Fatal error: Call to undefined method FacebookRestClient::status_get()
saturngod
2010-01-01 16:45:17
I am using like this$status=$fb->api_client->call_method("facebook.status.get", array('uid'=>$uid, 'limit'=>'5'));for($i=0;$i< 5;$i++){ echo $status[$i]['message']; echo "<hr>";}
saturngod
2010-01-01 16:51:47
Better post this as a new question ("Ask Question" button in the top right of the page). More people will see it that way.
sth
2010-01-02 03:01:46