简体   繁体   English

Rails 5.1、Rails 6.1.3 recaptcha v3 gem 集成

[英]Rails 5.1, Rails 6.1.3 recaptcha v3 gem integration

I found this doc to integrate rails gem recaptcha3 with device registration.我发现这个文档将 rails gem recaptcha3 与设备注册集成在一起。

https://github.com/heartcombo/devise/wiki/How-To:-Use-Recaptcha-with-Devise https://github.com/heartcombo/devise/wiki/How-To:-Use-Recaptcha-with-Devise

So ... I add this to register form for device:所以......我将此添加到设备的注册表中:

<%= recaptcha_v3(action: 'signup') %>

Then add this to controller:然后将其添加到控制器:

class Users::RegistrationsController < Devise::RegistrationsController

  prepend_before_action :check_captcha, only: [:create] # Change this to be any 
  actions you want to protect.

  private

  def check_captcha
    return if !verify_recaptcha # verify_recaptcha(action: 'signup') for v3

    self.resource = resource_class.new sign_up_params
    resource.validate # Look for any other validation errors besides reCAPTCHA
    set_minimum_password_length

    respond_with_navigational(resource) do
       flash.discard(:recaptcha_error) # We need to discard flash to avoid showing it 
       on the next page reload
       render :new
    end
  end
 end

Then I check gem documentation and add:然后我检查 gem 文档并添加:

# config/initializers/recaptcha.rb
  Recaptcha.configure do |config|
     config.site_key  = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
     config.secret_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'

  # Uncomment the following line if you are using a proxy server:
  # config.proxy = 'http://myproxy.com.au:8080'

  # Uncomment the following lines if you are using the Enterprise API:
  # config.enterprise = true
  # config.enterprise_api_key = 'AIzvFyE3TU-g4K_Kozr9F1smEzZSGBVOfLKyupA'
  # config.enterprise_project_id = 'my-project'
end

And what now?现在怎么办? recaptcha is invisible because in V3 version it only save some scores. recaptcha 是不可见的,因为在 V3 版本中它只保存一些分数。 Does it work yet?还能用吗?

I do not find any tutorial or help for recaptcha v3 for device / rails.我没有找到任何关于设备/导轨的 recaptcha v3 的教程或帮助。

Maybe someone do it already ?也许有人已经这样做了?

我已经在 Rails 6 应用程序中使用了它,并带有设计检查此代码https://github.com/Shaher-11/udzilla/commit/8220527e79eb49fa045fe1d7d1593031524de5a0

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM