一切正常,直到我将用户响应发送到Google服务器进行验证。这是发送响应的代码:
$http({
method: "get",
url: "https://www.google.com/recaptcha/api/siteverify",
params: {
secret: 'my-secret-key',
response: $scope.response
}
}).success(function (response) {
console.log(response);
}).error(function (errResponse) {
console.log(errResponse)
});
然后,我得到了这个:
答案 0 :(得分:1)
是的,但它无法发送ajax / http请求来验证来自js的验证码。 Yous应该编写你自己的后端函数,它将发送这个请求。
这样的事情: