Facebook provides severals APIs. For heavily javascript based apps, the JS api might be a good choice. I wonder how to handle the facebook and web app session securely. Let's say there is a web app user account and someone wants to login in with Facebook. How does one link the two accounts? As far as I know there must be two steps: 1. Check the Facebook login status und make the login if necessary. 2. Pass the facebook authentication data to the web app server and match it with stored facebook data, e.g. the access token and user id. If ok, start the web app session, too. I'm not sure if this is a secure way. The access token may change and the facebook user id can be known by other users. How do you do it?
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.
signed_requestto the server and validate it. Should be enough. – CBroe Jan 15 at 20:55