0

I am using GraphAPI to download posts from a Facebook Page that I am admin on. https://graph.facebook.com/facebookpageID/posts

I would also like to download Private Messages and TimeLine Posts? How to do that?

Thanks!

Regards, Cyril

2
  • if your goal is to avoid facebook authentication, use facebook rss feed to get timeline posts Commented Jun 4, 2013 at 9:59
  • No. My software uses the access token of my clients to get the posts and messages. Commented Jun 4, 2013 at 12:22

1 Answer 1

1

You will need the conversations endpoint http://graph.facebook.com/PAGE_ID/conversations with read_page_mailboxes permission https://developers.facebook.com/docs/reference/api/page/

3
  • 1
    This is what I get for a page I created or another page that I am admin on: { "error": { "message": "(#298) You must be a developer of the application", "type": "OAuthException", "code": 298 } } Commented Jun 12, 2013 at 13:34
  • @CyrilJoudieh could you update the question with the actual code you are using
    – phwd
    Commented Jun 12, 2013 at 13:44
  • $url = 'graph.facebook.com/'.$facebookpageID.'/conversations' $json = file_get_contents($url); Commented Jun 13, 2013 at 14:46

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.