Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Probably I'm just missing the basic of this so I apologize if the question is stupid.

I'm trying to obtain messages and attachments from Facebook, I'm using:

https://api.facebook.com/method/message.getThreadsInFolder?access_token=AT&folder_id=0

To get the list of threads and:

https://graph.facebook.com/fql?access_token=AT&q=QUERY

For my queries.

But, everytime, I have to copy the access token generated by the Graph API Explorer, I don't seem to be able to get it programmatically:

https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id=ID&client_secret=SECRET

Gives me an access token, but it doesn't work. If I try to use it with the URLs above I get:

"error_msg":"A session key is required for calling this method"

And for the second one:

  "message": "Invalid OAuth access token.",
  "type": "OAuthException",
  "code": 190

Probably I'm doing everything wrong, but the FB documentation it's so confusing and I don't know what to try.

share|improve this question
grant_type=client_credentials is wrong. See either developers.facebook.com/docs/howtos/login/server-side-login or developers.facebook.com/docs/howtos/login/… for details on how to get an access token. – Yuliy Mar 3 at 3:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.