Laravel API 正在返回 recaptcha 机器人验证响应

问题描述 投票:0回答:1

我的 Laravel API 有一个问题,它突然开始返回机器人验证响应,似乎我未能克服这个问题。

API recaptcha bot verification response

我正在邮递员和其他 API 测试工具中测试 Laravel API,并尝试在我的移动应用程序中通过 flutter 使用它,但出乎意料的是,API 开始返回 recaptcha 机器人验证响应,而不是预期的响应,我完全已经未能找到有效的解决方案,幸运的是,如果我使用浏览器访问 API,它会返回数据。

有没有人能提供解决办法?

回复回复:

\<!DOCTYPE html\>
\<html\>

\<head\>
\<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"\>
\<meta http-equiv="X-UA-Compatible" content="IE=edge"\>
\<meta http-equiv="Content-Type" content="text/html; charset=windows-1252"\>
\<title\>Bot Verification\</title\>
\<script\>
function onSubmit() {
document.getElementById('lsrecaptcha-form').submit();
}

        var onloadCallback = function() {
            var cont = grecaptcha.render('recaptchadiv', {
                'sitekey': '6Le6iOkhAAAAAEy2qFOqtynWjdr3vsIScExJ_Maz',
                'callback': onSubmit,
                'size': 'invisible'
            });
            grecaptcha.execute(cont);
        };
    </script>enter image description here
        body {
            height: 100%;
        }
    
        .panel {
            padding: 30px;
            max-width: 425px;
            margin: 10% auto;
            box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
        }
    
        .title {
            font-size: 1.5em;
            font-weight: 100;
            margin-top: 10px;
            text-align: center;
        }
    
        .recaptcha-center {
            margin-top: 35px;
            margin-bottom: 20px;
            margin-left: 13%;
            margin-right: 13%;
            display: block;
        }
    </style>

\</head\>

\<body\>
\<div class="panel"\>
\<h3 class="title"\>Verifying that you are not a robot...\</h3\>
\<form id="lsrecaptcha-form" method="POST" action="/.lsrecap/recaptcha?"\>
\<div id="recaptchadiv" class="recaptcha-center"\>\</div\>
\</form\>
\</div\>
\<script src="https://www.recaptcha.net/recaptcha/api.js?onload=onloadCallback&render=explicit" async defer\>
\</script\>`
\</body\>

\</html\>

Response returned

我尝试在邮递员和我的移动 flutter 应用程序中使用 API,但它没有返回预期的数据,而是返回 recaptcha 机器人验证响应。

laravel flutter dart bots recaptcha
1个回答
0
投票

也许是邮递员寄来的。

尝试在控制台使用curl进行测试。

© www.soinside.com 2019 - 2024. All rights reserved.