Google reCAPTCHA V3 || Google reCAPTCHA V3 integration in PHP

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024

Комментарии • 14

  • @TechAreaIndia
    @TechAreaIndia  2 года назад

    Please click to subscribe ruclips.net/user/techareaindia

  • @greggeneraux
    @greggeneraux Год назад +2

    This is not a real world solution. You execute the reCAPTCHA and retrieve the token on page load at the end of your script. The token will expire after 2 minutes. If the user takes longer than 2 minutes to complete the form, the server-side validation will fail after the form is submitted. The execution should take place upon clicking the submit button, not on page load. You're also ignoring the score returned after verifying the token server-side which indicates the likelihood of the user being a bot.

    • @christopherpereira420
      @christopherpereira420 Год назад +2

      Hi Greg G, very good question, surprised you have not received a reply,, Come on folks, one of you may know to answer this , please be kind enough to share..

    • @jojr5093
      @jojr5093 Год назад

      This is exactly what I'm unsuccessfully looking for... the search continues.

  • @zuhaibsiddiqui9496
    @zuhaibsiddiqui9496 2 года назад +1

    Awesome Boy!!

    • @TechAreaIndia
      @TechAreaIndia  2 года назад

      Welcome dear. Thanks for your interest with us.

  • @shivanichoudhary7350
    @shivanichoudhary7350 2 года назад +1

    Very good 👍

  • @toma1610
    @toma1610 2 года назад

    What happens if some user go to View > source code/developer tools, he can see the javascript coding of the reCaptcha, there. He can download the form to edit in HTML and copy and paste the JS scripts too, no risk? If the user see the KEY, can not be used for sending spam or malicious code?

  • @claudiomiguelmuller
    @claudiomiguelmuller 2 месяца назад

    Why do you declare remoteip and not use it?

  • @jmcharro9947
    @jmcharro9947 2 года назад +1

    Nice tutorial, but where is the info related with the server credential located? I mean the Host, Port, Usernam, Password...

    • @TechAreaIndia
      @TechAreaIndia  2 года назад

      Thanks for your interest with us... Please follow this link already given in description box www.google.com/recaptcha/admin/create

    • @jmcharro9947
      @jmcharro9947 2 года назад

      @@TechAreaIndia Thanks but I mean the email server info.

  • @toma1610
    @toma1610 2 года назад

    I am developing a simple form just to request more info or send comments, NO DATABASE needed. Still important to do validations and sanitation for every field, specially on the server side, like FILTER_SANITATION_EMAIL ( or a kind of...) or “htmlspecialchars” or “strip_tags”, whatever...? BESIDES the implementation of recaptcha? WIll be extra layer?