Oauth2 token not working for gmail_xoauth gem

a 夏天 提交于 2019-12-24 11:36:21

问题


I'm currently getting a token via the omniauth-google-oauth2 gem per the following: https://github.com/zquestz/omniauth-google-oauth2

I store the token that comes back from the auth_hash.

I then try to use the token by calling:

require 'gmail_xoauth'
imap = Net::IMAP.new('imap.gmail.com', 993, usessl = true, certs = nil, verify = false)
imap.authenticate('XOAUTH2', 'myemail@gmail.com', Token.last)

Problem is that I get an error:

[8] pry(main)> imap.authenticate('XOAUTH2', 'myemail@gmail.com', Token.last)
  Token Load (0.6ms)  SELECT  "tokens".* FROM "tokens"  ORDER BY "tokens"."id" DESC LIMIT 1
Net::IMAP::NoResponseError:  Invalid credentials (Failure)
from /Users/username/.rvm/rubies/ruby-2.2.1/lib/ruby/2.2.0/net/imap.rb:1171:in `get_tagged_response'

回答1:


Ok I took a look at google-api-client and I started to use that a little more. Seems like the best solution at the moment is to do the following:

  1. create an options hash that includes the gmail parameters and the gmail api_method
  2. use the service you initialize with your access_token to create your query in the options hash

Below you can see a rough example that you can use

client = Google::APIClient.new
client.authorization.access_token = token
service = client.discovered_api 'gmail'
options = {parameters: {'userId' => 'email@gmail.com'}, api_method: service.users.messages.list}
client.execute(options)

I mean this is pretty clunky and should be DRY'd up. (Hopefully google creates a better gem around this)




回答2:


The solution was to update the scope of omniauth for gmail.

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :google_oauth2, ENV['GOOGLE_CLIENT_ID'], ENV['GOOGLE_CLIENT_SECRET'], 
  {
    scope: [
            'https://mail.google.com/','https://www.googleapis.com/auth/userinfo.email'
            ]
  }
end


来源:https://stackoverflow.com/questions/31443926/oauth2-token-not-working-for-gmail-xoauth-gem

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!