Google Captcha in React || React Google Recaptcha || Captcha Authentication || ReactJS Google Auth

Поділитися
Вставка
  • Опубліковано 8 лют 2025
  • reCAPTCHA protects your website from fraud and abuse without creating friction.⭐⭐⭐⭐⭐
    reCAPTCHA uses an advanced risk analysis engine and adaptive challenges to keep malicious software from engaging in abusive activities on your website. Meanwhile, legitimate users will be able to login, make purchases, view pages, or create accounts and fake users will be blocked.💻💻💻💻💻
    NPM Library used - www.npmjs.com/...
    Check out our other videos as well - / @fusionprogramming8133
    Follow us on Instagram - shivankswami77
    Like, Share and Subscribe our channel for more Valuable content like this... ❤️❤️❤️❤️

КОМЕНТАРІ • 29

  • @oikya5804
    @oikya5804 10 місяців тому +3

    How did you implemented your Backend Validation?

  • @Phas0ruk
    @Phas0ruk Рік тому +11

    er what about validating the response from google??

    • @zeezeewhy
      @zeezeewhy Рік тому

      in the backend, google gives a post endpoint to verify, it will reply whether it is verified, hostname and action name.

  • @kashimjakati6945
    @kashimjakati6945 Рік тому

    Thank you so much Helpful for me

  • @bombyvonbomberson3285
    @bombyvonbomberson3285 2 роки тому +2

    Legend. Thank you!

  • @houdatintane6828
    @houdatintane6828 11 місяців тому

    thank you so much

  • @PritamMorajkar
    @PritamMorajkar Рік тому +1

    Hi! how do you get the traffic light identification pop-up? I only get to select the checkbox.

  • @camillerungette5050
    @camillerungette5050 Рік тому

    Thank you for your video, very good step by step !

  • @komalkapale
    @komalkapale Рік тому +2

    where is the port number..

  • @sunnyy6295
    @sunnyy6295 7 місяців тому

    Is there any library which is open source. This is a free service. Also what about platform based apps.

  • @preetjariwala9300
    @preetjariwala9300 Рік тому

    tysm

  • @johnconnor9787
    @johnconnor9787 8 місяців тому

    But where can we get gtoken?

  • @jtrenda333
    @jtrenda333 Рік тому +1

    Is this a React video or Uncharted?

  • @prayogaluphalithalu4305
    @prayogaluphalithalu4305 6 місяців тому

    What is onChange logic

  • @LalitSharma-te9ru
    @LalitSharma-te9ru 2 роки тому +1

    great 👍

  • @teshomeyalew935
    @teshomeyalew935 2 роки тому +1

    Everyone should subscribe. He made it easy for us. Thanks

  • @tripOWithme
    @tripOWithme 2 роки тому +1

    👌👍

  • @sanjuk3185
    @sanjuk3185 Рік тому +1

    How to refresh captcha in react

    • @sanjuk3185
      @sanjuk3185 Рік тому

      When we log out and come back to login page, recaptcha is not visible

    • @kushagraporwal4591
      @kushagraporwal4591 Рік тому

      @@sanjuk3185 any solution you got for this?

    • @sanjuk3185
      @sanjuk3185 Рік тому

      @@kushagraporwal4591 reaptcha is solution, I found later..

    • @Sameer.Trivedi
      @Sameer.Trivedi Рік тому

      You can use a reference. Just make a reference say const capRef = useRef(null);
      Pass this in the reference prop of reCaptcha component,
      Then you can use this reference to refresh the page with any function. For example
      Refresh CAPTCHA
      Then in your onClick function, you can do
      capRef.current.reset();
      Hope this helps!