How do I connect to Gmail's IMAP server using oauth in Rails3?
问题 I found the gmail_xoauth gem, which does most of what I need, but I also need to generate the oauth tokens (consumer_key and consumer_secret) from inside Rails3. I am trying to integrate Gmail's oauth integration into my site and hence cannot use the python script that the above gem refers to. I would like my site to take the user to the authentication page and extract the consumer_key/secret tokens. I am new to OAuth, so maybe there's something obvious that I am missing. UPDATE: I solved the