recaptcha icon indicating copy to clipboard operation
recaptcha copied to clipboard

How to increase timeout on Laravel?

Open edica opened this issue 5 years ago • 0 comments

I'm using setChallengeTimeout in 10 minutes but it doesn't work.

<?php
$response = (new ReCaptcha(ENV('RECAPTCHA_SECRET_KEY')))
            ->setExpectedAction('homepage')
            ->setScoreThreshold(0.5)
            ->setChallengeTimeout(600)
            ->verify($request->input('_recaptcha'), $request->ip());

edica avatar May 09 '20 14:05 edica