Is it possible to get the whole news feed with updates from friends included? I can't find a tutorial on it anywhere.
|
|
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 |
|||
|
|
|
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/ |
|||
|
|