Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Stop Robot Sign Ups on Your Devise Rails Application Using Google’s reCAPTCHA v3

Let’s see if I remember the exact steps I took to add reCAPTCHA v3 to my rails application…

Local Development

Gemfile

Add ‘recaptcha’ gem

gem "recaptcha"

Run bundle install

bundle install

.env

I am setting my environment variables using .env.

Oh yeah, if you haven’t done so already make sure to get your key and secret from Google before continuing.

development:
  ...
  RECAPTCHA_SITE_KEY: 6L**************************************Bc-
  RECAPTCHA_SECRET_KEY: 6L***********************************3hE
  ...
production:
  ...
  RECAPTCHA_SITE_KEY: 6L**************************************Bc-
  RECAPTCHA_SECRET_KEY: 6L**************************************Bc-
  ...

Don’t forget the possible dash (-) at the end of the site key!

View

Add the following line to your devise sign up form. In my case it was in app/views/users/registrations/new.html.erb



  
  ...

Controller

Add the following code to your ::RegistrationController

class Users::RegistrationsController 

Heroku

Config Vars

If you are hosting your app on heroku – make sure to add the key and secret to your Heroku Config Vars.

One you have clicked on Reveal Config Vars you can enter your key and secret values.

Heroku Config Vars

I ran into a problem when I did this step. I had not realized that I did not copy the full key. I was missing a dash (-) at the end of my key! So double check your key and secret.

Sign Ups are now Protected by Google reCAPTCHA v3

I hope I didn’t forget any of the steps. Please let me know if I did. I would hate to give out bad information.

As always, feel free to reach out to me if you have any coding question or post on newbstack.com.

The post Stop Robot Sign Ups on Your Devise Rails Application Using Google’s reCAPTCHA v3 appeared first on Coding Simplified.



This post first appeared on Coding Simplified, please read the originial post: here

Share the post

Stop Robot Sign Ups on Your Devise Rails Application Using Google’s reCAPTCHA v3

×

Subscribe to Coding Simplified

Get updates delivered right to your inbox!

Thank you for your subscription

×