I just started looking into OAuth and it looks really nice. I have oauth with twitter working in ruby right now.
Now I'm wondering, what is the recommended safe way to store the responses in my local database and session?
- What should I store?
- Where should I store it?
This example twitter-oauth-with-rails app stores a user.id
in the session, and the user table has the token
and secret
. But that seems like it'd be really easy to hack and get the secret by just passing in a slew of test user ids, no?