I am using Omniauth to request the user gmail credentials, so I can request the user friends/contacts later.
Right now I am getting the friends list inside of the OmniauthCallbacks controller, using the access token that the authentication request generates for me. Something like this
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
def google
auth = env["omniauth.auth"]
gmail_contacts
....
end
.....
protected
def gmail_contacts
access_token = env["omniauth.auth"]['extra']['access_token']
response = access_token.request(:get,
"https://www.google.com/m8/feeds/contacts/default/full?max-results=10000")
.....
end
end
How can I use the credentials that I have stored in the database to create a new access token, so I can call google API from a different controller?