是否可以使用OmniAuth获取Gmail oauth或xauth令牌?

时间:2011-05-15 16:18:38

标签: ruby oauth gmail omniauth xauth

我想从GMail获取oauth或xauth令牌以与gmail-oauth一起使用。我正在考虑使用OmniAuth,但它似乎还不支持GMail,这意味着有了OmniAuth库存是不可能的。那是对的吗?我错过了什么吗?

2 个答案:

答案 0 :(得分:2)

Omniauth支持OAuth和OAuth2,两者允许您对Google帐户进行身份验证。

以下是您可以通过omniauth使用的所有策略: https://github.com/intridea/omniauth/wiki/List-of-Strategies

以下是两个Google OAuth宝石:

根据第一个宝石的文档:

将中间件添加到config / initializers / omniauth.rb中的Rails应用程序:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :google, CONSUMER_KEY, CONSUMER_SECRET
  # plus any other strategies you would like to support
end

另外设置主omniauth gem

答案 1 :(得分:1)

我遇到麻烦,就像你一样,使用OAuth2和Gmail的现有宝石,因为Google的OAuth1协议现已弃用,许多宝石尚未更新以使用其OAuth2协议。我终于可以直接使用Net::IMAP了解它。

以下是使用OAuth2协议从Google获取电子邮件的工作示例。此示例使用mailgmail_xoauthomniauthomniauth-google-oauth2宝石。

您还需要在Google's API console中注册您的应用以获取API令牌。

# in an initializer:
ENV['GOOGLE_KEY'] = 'yourkey'
ENV['GOOGLE_SECRET'] = 'yoursecret'
Rails.application.config.middleware.use OmniAuth::Builder do
  provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], {
    scope: 'https://mail.google.com/,https://www.googleapis.com/auth/userinfo.email'
  }

end

# ...after handling login with OmniAuth...

# in your script
email = auth_hash[:info][:email]
access_token = auth_hash[:credentials][:token]

imap = Net::IMAP.new('imap.gmail.com', 993, usessl = true, certs = nil, verify = false)
imap.authenticate('XOAUTH2', email, access_token)
imap.select('INBOX')
imap.search(['ALL']).each do |message_id|

    msg = imap.fetch(message_id,'RFC822')[0].attr['RFC822']
    mail = Mail.read_from_string msg

    puts mail.subject
    puts mail.text_part.body.to_s
    puts mail.html_part.body.to_s

end