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.

How to use https://graph.facebook.com/oauth/exchange_sessions achieve fb_sig_** parameters???

share|improve this question

closed as not a real question by Justin Pihony, Igy, Bill the Lizard Apr 2 at 13:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You need to issue the http request to that url supplying the following parameters:

  • client_id - the api id of your app
  • client_secret - the secret of your app
  • sessions - the session keys you want to exchange (comma-separated list)

It is discussed in the Legacy Canvas Auth doc, look for the Migrating to OAuth 2.0 section.

You should however stop using the old oath, and switch to the new OAuth 2.0 since the old one is deprecated.

share|improve this answer
I visit graph.facebook.com/oauth/exchange_sessions?client_id=***&client_secret=*** callback [null]. How to use it according to OAuth 2.0 ??? – Smith Clarence Mar 16 '12 at 2:01
You can not send the parameters in a query string format (key=value&...) since in the docs they say send a POST request, the way you are trying is GET. I don't know which language/framework you are using on the server, but you can issue a post request with it all (php, python, ruby, java, etc). – Nitzan Tomer Mar 16 '12 at 10:35

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