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

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ก.ย. 2022
  • 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/package/react-g...
    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... ❤️❤️❤️❤️

ความคิดเห็น • 28

  • @camillerungette5050
    @camillerungette5050 ปีที่แล้ว

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

  • @Phas0ruk
    @Phas0ruk ปีที่แล้ว +11

    er what about validating the response from google??

    • @zeezeewhy
      @zeezeewhy 9 หลายเดือนก่อน

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

  • @bombyvonbomberson3285
    @bombyvonbomberson3285 ปีที่แล้ว +2

    Legend. Thank you!

  • @kashimjakati6945
    @kashimjakati6945 5 หลายเดือนก่อน

    Thank you so much Helpful for me

  • @houdatintane6828
    @houdatintane6828 3 หลายเดือนก่อน

    thank you so much

  • @tripOWithme
    @tripOWithme ปีที่แล้ว +1

    👌👍

  • @LalitSharma-te9ru
    @LalitSharma-te9ru ปีที่แล้ว +1

    great 👍

  • @oikya5804
    @oikya5804 3 หลายเดือนก่อน +2

    How did you implemented your Backend Validation?

  • @preetjariwala9300
    @preetjariwala9300 4 หลายเดือนก่อน

    tysm

  • @komalkapale
    @komalkapale ปีที่แล้ว +2

    where is the port number..

  • @sunnyy6295
    @sunnyy6295 12 วันที่ผ่านมา

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

  • @user-gc6bw4cf6k
    @user-gc6bw4cf6k 9 หลายเดือนก่อน +1

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

  • @teshomeyalew935
    @teshomeyalew935 ปีที่แล้ว +1

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

  • @johnconnor9787
    @johnconnor9787 17 วันที่ผ่านมา

    But where can we get gtoken?

  • @jtrenda333
    @jtrenda333 9 หลายเดือนก่อน +1

    Is this a React video or Uncharted?

  • @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!