Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get my last posts from facebook to store on a database or an array. I tried to get my own updates by doing this:

<?

    require_once("src/facebook.php");

    $config = array();
    $config['appId'] = 'appId';
    $config['secret'] = 'secretId';
    $config['fileUpload'] = false; // optional

    $facebook = new Facebook($config);

    $feed = $facebook->api('/myUserId/feed');

    print_r($feed);

?>

But it returned only my personal information, not my updates, something like that:

Array ( [data] => Array ( [0] => Array ( [id] => ################## [from] => Array ( [name] => My Name [id] => My Id ) [story] => My Name likes a photo. [story_tags] => Array ( [0] => Array ( [0] => Array ( [id] => myId [name] => My Name [offset] => 0 [length] => 13 [type] => user ) ) ) [type] => status [application] => Array ( [name] => Likes [id] => ######## ) [created_time] => 2012-09-27T13:31:52+0000 [updated_time] => 2012-09-27T13:31:52+0000 [comments] => Array ( [count] => 0 ) ) ) [paging] => Array ( [previous] => https://graph.facebook.com/#######/feed?limit=25&since=1348752712&__previous=1 [next] => https://graph.facebook.com/#########/feed?limit=25&until=1348752711 ) ) 

What am i missing??

share|improve this question
You can use the Graph API Explorer to get your bearings within their API. It's a great tool to learn about all the relations between objects. – Lix Sep 29 '12 at 14:36
I couldn't get exactly what I want by the documentation. I could only get info from the user loged in the session. I need to show my updates regardless user log in or confirmation. – Dênis Montone Sep 30 '12 at 12:08
You need to take a look at the lifetime of access tokens. you must have a valid token to access a users information. You might not be able to get all the information you seek. – Lix Sep 30 '12 at 12:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.