I am trying to build something similar to Stack Overflow's authentication system (Authlogic Connect, rubygem) and I'm using Oauth. When I logout and try to log back in through Google (testing the gem), it gives me a new token, so if I've stored the previous token in the database, it doesn't matter because the new one doesn't match. That means I can't find the user. Same thing happens if I do it with twitter and revoke access: twitter gives me a new token and I can't find the user in the database.
So how is stack overflow doing it?
Are you just getting the email address from the authentication provider, and finding the user by that?
Thanks for the tips,
Lance
