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.

Is it possible to get the whole news feed with updates from friends included? I can't find a tutorial on it anywhere.

share|improve this question
1  
You could start reading the API documentation.. – halfdan Apr 15 '11 at 8:31
search google... – Hacker Apr 15 '11 at 8:42

2 Answers

none of this helps? http://stackoverflow.com/search?q=cakephp+facebook

or http://www.google.co.uk/search?sourceid=chrome&ie=UTF-8&q=cakephp+facebook+plugin

share|improve this answer
It isn't really what I mean. – DaDu Apr 15 '11 at 11:12

of course it is possible.

You need to have the [read_stream] permission for your app. More info: https://developers.facebook.com/docs/authentication/permissions/

You can get your friend's wall feed via the graph api:

$userid=123456; //your user id

$json_output=$facebook->api('/$userid/feed?fields=id,message,created_time,likes,comments,type&limit=0&since=2010-01-01&until=2011-04-23');

that would return a json array where you will be able to read the posts easily. Notice i added specific fields that i would like to get, so the time it takes for the request to process would be smaller. I also added limit=0 to get ALL wallposts (usually graph returns only a small amount and you have to use "paging"). Notice the dates as well.

for more information: https://developers.facebook.com/docs/reference/api/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.