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 am absolutely pulling my hair out.

All I want to do is retrieve the status updates from a specific user, so I can post them on my website. I cannot find how to do this as all tutorials online appear to be outdated.

I have tried setting up an app, generating an access token and then retrieving them using:

$json_str = file_get_contents('https://graph.facebook.com/YOUR-PROFILE-NAME/feed?access_token='.$access_token);

But all this returns for me is the user's ID - not the actual status posts.

Please - before my head explodes - someone help!

share|improve this question
Hi Andy, did you request the read_stream permission from the user? – Lix Jan 10 at 23:26
Hi Lix - I have basically followed this tutorial: interworks.com/blogs/fsuchomel/2012/05/21/… . How would I add read stream to the request? – Andy Jones Jan 10 at 23:34
I have also tried changing the request so it's : PAGEID?fields=id,name,feed&access_token='.$access_token but still no luck. It works on api explorer :/ – Andy Jones Jan 10 at 23:42
You have to add it when the user installs the application. You put it in the scope parameter. – Lix Jan 10 at 23:42
No idea why but it appears to be working now. – Andy Jones Jan 10 at 23:44

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.