I wrote a web-app that authenticated a user via Facebook connect (o-Auth). After the user have authenticated I have a facebook token. Using this token I send a request to Facebook to grab its basic user information. At this point I have the user unique Facebook id and I know who it is.
How should I link between the user, the token and it's data in the database? Right now my schema is pretty simple: facebook_id is the Primary key, and there are some other columns that includes the token and the user's data. Is that the correct way to do it?
At which point do I need to set a unique SESSION_ID (cookie) on the user request? After it authenticated? I am confused about this part (and with Session management in general). When i set an attribute on a session does the browser remember it an send it in every request to my server? across all pages?
And the most important question is, how do i map between the SESSION ID and the user? Once i set a session id on his request, i need to figure out on every request who it is. What's the best way to do it?