I'm using Facebook as an option for logging into my website, and then am doing Graph API requests on behalf of them. I'm upgrading to both the new JavaScript SDK and the PHP SDK to use their latest oAuth stuff before the October 1 deadline.
The PHP SDK now comes with an abstract BaseFacebook and they have an example Facebook class implementation that relies on PHP $_SESSIONs. I run a pretty large multi-server website, which makes using $_SESSIONs tricky -- can't use the default file-based sessions, and database-backed sessions often are no good for performance reasons. Not sure I want them in Memcached either as users shouldn't get logged out if it's cleared, etc.
The concrete class only needs you to persist these 4 fields for each visitor: state, code, access_token, user_id. It seems like not all of these really need to be pure $_SESSION based. I'm trying to determine what really needs to go where...
- For example, the
statedata seems like it can be stored in a client-side cookie as it's only 1-time use for CSRF prevention. - Does the auth
codereally need persisting or is it only used once? - Can the
user_idandaccess_tokenbe stored in myusersMySQL database? If so, how do I identify who a Facebook-authed user is to login them in, using thefbsr_cookie?
I'm happy to store some stuff in the database as long as it's clear that it's only be accessed when necessary (not on every page request for logged out users).
Basically: Is it feasible to authenticate FB users without using $_SESSIONs? Where by "sessions", I mean some PHP-set cookie for all visitors (logged in or not) that links them with server-side data.