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.

I want to create facebook app. In this official tutorial I see, that:

  • facebook user enter to my app https://apps.facebook.com/app-name/
  • first I have to recieve POST query with signed_request argument to my server app
  • Parsing signed_request.
  • I see, there are no user_id or oauth_token in signed_request, and I can't see code argument, so I redirect to https://www.facebook.com/dialog/oauth/ or https://graph.facebook.com/oauth/authorize (what difference between these to links?)
  • User add my app, gives me permission.
  • Then I get POST query with code and signed_request arguments.
  • I see in signed_request oauth_token.

Question: After that I must use this oauth_token, like access_token for Facebook Graph API, or I must create query to https://graph.facebook.com/oauth/access_token with code, and then I receive access_token, which I must use.

So, again:

  1. oauth_token vs access_token
  2. https://www.facebook.com/dialog/oauth/ vs https://graph.facebook.com/oauth/authorize
share|improve this question
If you are getting a signed_request parameter, then you’re obviously inside of a canvas or page tab iframe. How login works for those, is explained in these docs sub-chapters: developers.facebook.com/docs/authentication/canvas, developers.facebook.com/docs/authentication/pagetab – CBroe Oct 11 '12 at 14:33

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.