Reputation: 35
I am using graph API. I have to fetch feed(i.e.. posts on the particular page) and display on viewController.
Is there any tutorial which I can follow for my assignment?
Upvotes: 2
Views: 177
Reputation: 36
Sorry, don't know about tutorials but I recently had to access a page's posts as well.
If you are an admin to the page and it's accessible to anyone then you can just setup a app and then do:
https://graph.facebook.com/pageId/feed?&access_token=App Id|App Secret
I did this with .Net and a web client request and deserialized the result into objects but I hope that helps.
Upvotes: 2
Reputation: 1083
checkout this link
https://developers.facebook.com/docs/mobile/ios/build/
checkout this example
https://github.com/facebook/facebook-ios-sdk/tree/master/sample/Hackbook
may be it is use full to you
Upvotes: 2