On my site I have a traditional username/password login form which has a remember me functionality - which work great. I have recently added login with Facebook, Twitter and Google options also. However, with these third party logins the user doesn't have an option to click any 'remember me' check box.

Of course I could add a 'check box' and maybe save the users OAuth credentials in a Cookie, but I think I would prefer if I didn't have to add the extra bit of UI and instead maybe make it based on the users session on facebook.com / twitter.com / google.com.

Just wondering is there any easy way to do this that doesn't involve potentially long API calls to 3 different services just to check if the user is even logged in. Or is there some better third option that I'm not even thinking of?

link|improve this question

56% accept rate
feedback

1 Answer

From looking at what Stack Overflow itself is doing, it looks like they actually just presume 'remember me' and the user's Facebook (etc) session has nothing to do with it. I guess they just save your OAuth data in a Cookie each time you login and don't delete it until you specifically logout of SO yourself. I guess this could work for me too, seemed a bit presumptuous when I first thought about it, but really I suppose it's fair enough - people do expect to be logged into most things for more than just a couple of hours.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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