我在 MVC 应用程序中使用 reCaptcha。在控制器中,我有 RecaptchacontrolMVC.CaptchaValidator 属性。
我的 CaptchaValid 总是返回 false 并显示错误消息“无效的 reCAPTCHA 请求。缺少挑战值。”
[RecaptchaControlMvc.CaptchaValidator]
public ActionResult Login(Model model, bool captchaValid, string
captchaErrorMessage)
{
if(captchValid)//this is false
}
我错过了什么吗?