I would like to display Facebook Fan Wall like the way in the image below. Can you please let me know how it can be done?

Thanks!
|
I would like to display Facebook Fan Wall like the way in the image below. Can you please let me know how it can be done?
Thanks! |
|||||||
|
|
You can pull in the list of wall feeds from https://graph.facebook.com/cocacola/statuses?access_token=... (a preview can be seen with the graph api explorer here). Then you would just parse the returned JSON and put them into UITableView cells. |
|||
|
|
|
You need to post to your friends feed, Easy way would be to adapt your code to use the appropriate graph method with the persons you wish to post to facebook ID (i've assumed here you have stored this from an earlier call the graph api in person.facebookID)
http://developers.facebook.com/docs/reference/api/post To get a list of the users friends use the graph path me/friends
Which will return a JSON list of the users friends names and their Facebook ids, to the appropriate delegate method from FBRequest, its probably worth wrapping this set of results into a set of person objects or storing the returned Using this method will mean you do not have to use the Facebook dialogs in the iOS sdk, which does mean there is an upper limit to how many messages the user can post in a day using your app If you wish to use a dialog you will need to include the |
||||
|
|