recaptcha icon indicating copy to clipboard operation
recaptcha copied to clipboard

Timeout change ReCaptcha

Open elvispdosreis opened this issue 5 years ago • 0 comments

I'm having trouble setting a timeout time

            $recaptcha = new ReCaptcha($settings['secret']);
            $recaptcha->setScoreThreshold(0.5);
            $recaptcha->setChallengeTimeout(300);
            $resp = $recaptcha->verify($body->grecaptcha, $ip);

            if (!$resp->isSuccess()) {
                throw new \Exception('Tente novamente.');
            }

elvispdosreis avatar Aug 06 '20 10:08 elvispdosreis