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 users to be able to register on my mobile (web based) app and login using their Facebook account. Is this possible using the JavaScript API?

The user can login using Facebook, and the userID and auth code of that user can be sent to my server to create the account, but I see a security flaw because then anyone could then log in as anyone by sending a userID and their own auth code. So can user accounts not be done with the JavaScript API and only with a server side API?

share|improve this question

2 Answers

up vote 1 down vote accepted

All Facebook requests are also signed with a secret key that belongs to the app you've registered to handle Facebook sign-ups on your website, so you can use that to verify it comes from Facebook and not someone else.

This is also outlined in the registration documentation

share|improve this answer
Ok so is this the flow: User clicks register in my app, they authorised my app and login to facebook, the data is sent back to my JavaScript function signed using my secret key, I sent this data to my server (running in python) which checks the signature using my secret key to make sure it is correct, then I create the facebook linked account on my system? What is to stop someone from logging in to facebook and then intercepting and changing the username or userID on the client side before it is sent to my server? – Timm Aug 15 '12 at 13:08
1  
It's a signed request. You recalculate the signature and compare it to Facebook's calculated one. If they are different, someone changed the data. Its in the documentation, just scroll down to "Reading the data". – Brent Baisley Aug 15 '12 at 13:18
1  
@Tim I appreciate that you take the time to worry about the security aspect of it; trust me, I don't see this often :) but like Brent mentioned the request is signed, so any changes will cause the signature check to fail. – Jack Aug 15 '12 at 13:21
Thanks guys think I'm finally getting to understand this, guess I now need to figure out how to recalculate the signature in Python... – Timm Aug 15 '12 at 13:25
@Tim good luck with that, but I believe they use a portable hash function to calculate the signature so it should be straightforward :) – Jack Aug 15 '12 at 13:26

Strictly speaking, it is not possible for the Facebook SDKs to explicitly create a new user. However, when you implement a 'Login with Facebook' button (see here for JS and here for PHP), Facebook's OAuth dialog appears, which will prompt the user to log in (if they are not already) or to sign up with Facebook, thereby creating a new account, albeit not under your control.

share|improve this answer
But when the user has logged in and authorised my app, and I have the user details on the client side in JavaScript - can I use those details to automatically create an account on my website? – Timm Aug 15 '12 at 12:59
Yes, and you actually should. Then, after they logged in and their account is created (or the next time they log in through Facebook and you detect they already have an account), you use your site’s internal mechanism to log your site’s corresponding user in automatically (your framework/CMS/whatever should provide a method to log in a user internally). – CBroe Aug 15 '12 at 15:44

Your Answer

 
discard

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

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