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

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 พ.ย. 2024

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

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

    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 9 หลายเดือนก่อน

    Thank you so much Helpful for me

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

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

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

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

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

    thank you so much

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

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

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

    where is the port number..

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

    But where can we get gtoken?

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

    Legend. Thank you!

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

    Is this a React video or Uncharted?

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

    great 👍

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

    👌👍

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

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

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

    What is onChange logic

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

    tysm

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