几个月前,我创建了一个使用 oauth2 通过 google 进行身份验证的 rails 应用程序 - 具体来说,omniauth-google-oauth2 gem。我已经完成了创建身份验证和存储刷新令牌的所有步骤,但最近 oauth2 停止将“refresh_token”作为响应的一部分发回。最初我收到的回复包含:
credentials: {
refresh_token: XXX,
token: YYY,
expires_at: 1374840767,
expires: true
},
现在我只取回一个小时内过期的令牌:
credentials: {
token: YYY,
expires_at: 1374840767,
expires: true
},
我真的不知道我在应用程序方面做了什么来改变它,所以我不确定谷歌是否改变了某些东西,或者它是否是我所做的。对于上下文,我的代码如下所示:
初始化程序/omniauth.rb:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :google_oauth2, 'KEY', 'SECRET', {:scope => "userinfo.email,userinfo.profile,analytics.readonly,adsense.readonly"}
end
authentications_controller.rb 是我收到响应的地方:
def create
auth = request.env["omniauth.auth"]
params = request.env["omniauth.params"]
project = Project.find(params['project_id'])
Authentication.create(:project_id => project.id, :provider => auth['provider'], :uid => auth['uid'], :access_token => auth['credentials']['refresh_token'])
flash[:notice] = "Authentication successful."
redirect_to owner_view_project_path(project)
end
我的初始化程序/omniauth.rb 文件中是否可能缺少某些内容?我尝试将以下内容添加到选项哈希中,但这似乎并没有带回刷新令牌:
:approval_prompt => "force", :access_type => "offline"
任何帮助将不胜感激!提前致谢!