使用PHP ReCaptcha library我在本地计算机上进行开发时,开始有时间验证我的recaptchas服务器端。
我将其缩小到ReCaptcha\RequestMethod\Post::submit
中的超时时间,其中file_get_contents
用于点击'https://www.google.com/recaptcha/api/siteverify'
。我发现我可以通过以下方式从CLI复制超时:
php -r "var_dump(file_get_contents('https://www.google.com/recaptcha/api/siteverify?remoteip=127.0.0.1'));"
在预感中,我从我的Wi-Fi更改为绑定在手机上,并且可以立即连接。
这表示Google服务器已阻止我的IP。那么,有没有办法解除阻止呢?