gpt4 book ai didi

ruby-on-rails - 谷歌身份验证错误 Ruby on Rails

转载 作者:太空宇宙 更新时间:2023-11-03 17:43:38 25 4
gpt4 key购买 nike

我正在尝试在我的 Rails 应用程序上实现 Google 身份验证,但我遇到了一些问题。

正在关注 https://richonrails.com/articles/google-authentication-in-ruby-on-rails/ ,我使用从 Google 的开发人员控制台“omniauth.rb”获得的 key 创建了初始化器

OmniAuth.config.logger = Rails.logger

Rails.application.config.middleware.use OmniAuth::Builder do
provider :google_oauth2, '*****', '*****', {client_options: {ssl: {ca_file: Rails.root.join("cacert.pem").to_s}}}
end

我添加了一些路由

  # GOOGLE AUTH
get 'auth/:provider/callback', to: 'sessions#create'
get 'auth/failure', to: redirect('/')
get 'signout', to: 'sessions#destroy', as: 'signout'

我的 session 的创建操作

def create
user = User.from_omniauth(env["omniauth.auth"])
sign_in user
flash[:success] = 'Logged in!'
redirect_to root_path
end

以及用户模型中的User.from_omniauth方法

def self.from_omniauth(auth)
where(provider: auth.provider, uid: auth.uid).first_or_initialize.tap do |user|
user.password = user.password_confirmation = user.password_digest = SecureRandom.urlsafe_base64(n=6)
user.provider = auth.provider
user.uid = auth.uid
user.name = auth.info.name
user.oauth_token = auth.credentials.token
user.oauth_expires_at = Time.at(auth.credentials.expires_at)
user.save!
end
end

我设置了一个随 secret 码,因为我也在使用 bcrypt 身份验证,它强制每个用户都有一个密码

最后,在我看来我有一个登录按钮

= link_to "Sign in with Google", "/auth/google_oauth2", id: "sign_in", class: "btn btn-primary"

问题是它不起作用,当我单击它时, session 的创建错误显示 user = User.from_omniauth(env["omniauth.auth"]):

NameError at /auth/google_oauth2/callback
undefined local variable or method `env' for #<SessionsController:0x956eb90>

其他时候,它会在另一行中抛出 SSL_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A (OpenSSL::SSL::SSLError) 但我想这是另一个错误.

最佳答案

没有可用的env 方法。而不是这个,使用

user = User.from_omniauth(request.env["omniauth.auth"])

在您的 create 方法中,request.env["omniauth.auth"] 对象具有在用户向您的应用程序进行身份验证后由 google 发送的信息。

关于ruby-on-rails - 谷歌身份验证错误 Ruby on Rails,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47282311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com