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?

link|improve this question
feedback

1 Answer

An idea - investigate whether the params[:oauth_verifier] that was sent from gmail will work in subsequent requests. But maybe it's only good for that one request.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.