I\'m trying to use the Facebook Graph API to get the latest status from a public page, let\'s say http://www.facebook.com/microsoft
According to http://developers.fa
You can use AppID and Secret key to get the public posts/feed of any page. This way you don't need to get the access-token. Call it like below.
https://graph.facebook.com/PAGE-ID/feed?access_token=APP-ID|APP-SECRET
And to get posts.
https://graph.facebook.com/PAGE-ID/posts?access_token=APP-ID|APP-SECRET