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?