So I have an app account in which it can login using facebook/twitter or as well using the app account it self (username/email and password). Sometimes in an app I see they allow to connect the app account with twitter and facebook account, how do they actually make these connections? What I am confused is that if I have a User object (stored in the database) then what do I need to store additionally in that User class to represent the connection to a user facebook twitter and facebook account? Can someone give me an insight to this?
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.
|
|
|
Typically all you'd store would be the facebook user id and the twitter user id. When someone wants to connect an account (say Facebook) you'd ask them to log into their app account, then log into their facebook account. You'd then save their facebook user id into the appropriate field in your User object. Later on they can then log in with their facebook account and you can look up the right User using the facebook user id field. Twitter would work the same. |
|||||||||||||
|