tags:

views:

426

answers:

2

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
thanks for the pointer to this blog post.
taylorparsons
A: 

I have a error when use status_get

Fatal error: Call to undefined method FacebookRestClient::status_get()

saturngod
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
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

related questions