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.

Can non-facebook users still register through your website without ever getting a facebook account. Could they simply use the provided facebook registration form for your website and not sign-up for a facebook account?

share|improve this question
1  
No... that's the the whole thing about registering through Facebook... It makes it easier becuase the person already has a Facebook account... – Lix Jun 2 '12 at 4:45
If you dont want to signup for facebook then why use Facebook OAuth, try to use other providers like Google, Twitter, MSN Live etc. – uDaY Jun 2 '12 at 5:13

closed as off topic by Tim Post Jun 3 '12 at 16:12

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

It seems that you're referring to the OAuth provided by Facebook. Truth is that the Facebook API can only give you data about Facebook users, so if somebody doesn't have a Facebook account, you will not be able to retrieve his/her data through the Facebook API.

Anyway, since you have to implement such an authorization in your code, it's up to you how to handle the registration: you can

  • create a form for users that don't have a Facebook account
  • implement another registration-facilitator as the OpenID, or
  • not allow non-Facebook users to register on your site.

Hope it helps.

share|improve this answer

I think your referring to OAuth. The point is the user has already typed their email, name, etc into facebook and you have facebook give that back to your app so the user doesn't have to type it again. So to answer your question no.

share|improve this answer
Just to clarify, if a user without a facebook account registers through the facebook registration form and fills in all of their information, when they click register, does that register them only for the website or also through facebook? – Mark Burger Jun 2 '12 at 5:13
yes, I agree. However, that wasn't his question. – eggie5 Jun 2 '12 at 6:16
what do you mean 'through facebook'? you're using their facebook account details to create an account on your own site, which they'll log into via facebook (or your own auth system if you want to complicate things) – Igy Jun 3 '12 at 16:00

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