I have a small problem with opening the facebook wall in UIWebview. I have access_token and friends id saved in my local database. Now, I would like to open the UiWebview to show the users wall. It seems it is only possible to fetch the feeds from the user profile in the form of json. Is it really possible to display the users wall with the user id and access_token.
I could fetch the users wall feed in the form of json simply as;
https://graph.facebook.com/<user_id>/feed?access_token=<access_token>
But, this in json format. Is there any way to get the feed in html form or login to facebook such that it stores the cookie in uiwebview with my existing token.