我有麻煩,像你一樣,使用現有的寶石,因爲谷歌的XOAUTH現在已經過時。你應該使用他們的新XOAUTH2。
下面是一個使用XOAUTH2協議從Google獲取電子郵件的示例。此示例使用mail
,gmail_xoauth
,omniauth
和omniauth-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
# 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
我有同樣的問題,我一直在努力使這項工作,但我不能 – Shakes 2012-05-01 23:07:57