以下是我用来允许用户授权我的应用通过OAuth访问其Google日历的代码。我的基础是this sample code。
大部分时间都可以使用,但有时,ArgumentError: Missing authorization code
控件中的client.authorization.fetch_access_token!
操作中的create_google_calendar
行会出现services
错误。如果我注释掉该行,则所有client.authorization
属性都为null
。
我使用的是Rails 3.2.0和Ruby 1.9.2。
造成这种情况的原因是什么?
的Gemfile
gem 'google-api-client', :require => 'google/api_client'
service.rb
def self.google_calendar_client google_calendar_service=nil
client = Google::APIClient.new
client.authorization.client_id = xxx
client.authorization.client_secret = xxx
client.authorization.scope = 'https://www.googleapis.com/auth/calendar'
url_prefix = Rails.env.production? ? xxx : 'http://localhost:3000'
client.authorization.redirect_uri = "#{url_prefix}/create_google_calendar"
if google_calendar_service.present?
client.authorization.update_token! :access_token => google_calendar_service.token, :refresh_token => google_calendar_service.google_calendar_refresh_token, :expires_in => google_calendar_service.google_calendar_expires_in, :issued_at => Time.at(google_calendar_service.google_calendar_issued_at)
client.authorization.fetch_access_token! if client.authorization.expired?
end
client
end
services_controller.rb
def connect_google_calendar
@google_calendar_url = Service.google_calendar_client.authorization.authorization_uri.to_s
end
def create_google_calendar
client = Service.google_calendar_client
client.authorization.code = params[:code]
client.authorization.fetch_access_token!
current_user.services.create :provider => 'google_calendar', :token => client.authorization.access_token, :google_calendar_refresh_token => client.authorization.refresh_token, :google_calendar_expires_in => client.authorization.expires_in, :google_calendar_issued_at => client.authorization.issued_at
end
答案 0 :(得分:1)
事实是,我不知道。你的代码对我来说很合适。但我至少可以告诉你这个错误意味着什么。缺少授权代码意味着它在您获取访问令牌时认为您正在尝试执行“授权代码”授予类型。如果您实际上是在尝试从刷新令牌获取访问令牌而不是在获得用户授权后在第一次传递时执行此操作,那么您可能没有正确设置授权对象。
您可以通过检查client.authorization.grant_type
值来检查这一点。在最新版本的客户端中,您可以手动设置grant_type
值以强制使用特定模式,这可能会为您提供更多信息性错误消息,具体取决于实际问题。