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 I use just an "email" as a unique identifier for a website that only supports Google OpenID and facebook OAuth Login?

I'm not storing IDs, I'm just storing the email...

Will it be enough ? Will there be conflicts?, and will someone who registered a facebook account with that same email of gmail but haven't yet activated it be able to login, and gain access to that of which was registered with OpenId ?

share|improve this question
It's better to store user id's, cause if a user change his/her email address, you will not find them in your users list. You can also store the email and check if a user have change it, so you can update it. – Philip Mar 31 '12 at 14:30

2 Answers

It is not recomended to use email as unique identifier because facebook users have the option to change the email associated with their account any time. In that situation your system will fail.

share|improve this answer

It's better to store user id's, cause if a user change his/her email address,
you will not find them in your users list.
You can also store the user email and check if a user have change it, so you can update it.

share|improve this answer

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.