无法验证重新捕获v3令牌

时间:2019-01-09 12:19:04

标签: recaptcha-v3

Iam使用Recaptcha V3隐形模式。我有sitekey并将脚本代码放在页面的顶部。在页面加载时,我得到了令牌,并且当我想使用recaptcha的siteverify api验证此令牌时,尽管iam提供了它,但我却收到了缺少响应和缺少机密的错误。

我尝试使用ajax发布(客户端)和httpClient(服务器端)进行验证,但出现相同错误。

StringContent stringContent = new StringContent("secret=6LebJYgUAAAAA******s2P5CU6&response =" + token);
                    var response = await client.PostAsync(" https://www.google.com/recaptcha/api/siteverify", stringContent);
                    var result = await response.Content.ReadAsStringAsync();
                    data= result;

0 个答案:

没有答案