You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When verifying the request, the error "incorrect-captcha-sol" is returned. I tried recreating recaptcha keys, different connection methods, clearing browser cookies, opening the site through a different browser.
Steps To Reproduce:
For example FeedbackController.php file:
public function post(Request $request)
{
$captcha = new NoCaptchaV3(
'RECAPTCHAV3_SECRET',
'RECAPTCHAV3_SITEKEY'
);
if ($request->all() && $request['g-recaptcha-response']) {
$response = $captcha->verify($request['g-recaptcha-response'] ?? null);
if ($response->isSuccess()) {
...
} else {
dd($response);
}
}
}
Description:
When verifying the request, the error "incorrect-captcha-sol" is returned. I tried recreating recaptcha keys, different connection methods, clearing browser cookies, opening the site through a different browser.
Steps To Reproduce:
For example FeedbackController.php file:
feedback.blade.php:
main.js:
The text was updated successfully, but these errors were encountered: