Using PHP to get Facebook friends statuses? -
that's first post here on so. i'm using php facebook friends statuses. in particular, i've tried retrieve public statuses 1 of facebook friends, happens first 100 statuses. need statuses , write them in text file. code i'm using, patched many answers read here on so. $i=0; $result = $facebook->api('/my_friend_id/statuses/', array('access_token' => $facebook->access_token,'limit'=>100,)); //'offset'=>50,used before limit, push limits forward 50, doesn't go beyond //'since'=>2010, read on there field, can't make work. foreach($result['data'] $post) { echo $i . '<br>'; echo $post['id'] . '<br>'; echo $post['from']['name'] . '<br>'; echo $post['from']['id'] . '<br>'; echo $post['name'] . '<br>'; echo $post['message'] . '<br>...