我们在以下网址上有一个实时的reCaptcha v2实现:
https://och.stonybrook.edu/index.php?page=roommates&task=submit
reCaptcha工作正常,直到我报告为今天不工作。
我已经确定了以下内容:
我有:
我无法理解setDT(tests)
setDT(cheaters)
tests[, cheat := FALSE][cheaters, cheat := TRUE, on = .(id, test)]
tests
# id test score cheat
#1: 1 1 90 FALSE
#2: 1 2 100 TRUE
#3: 2 1 70 FALSE
#4: 2 2 80 FALSE
#5: 3 1 100 TRUE
#6: 3 2 95 TRUE
未将其数据发布到服务器的原因。
我已经在https://developers.google.com/recaptcha/docs/verify抓取了文档但无济于事。
HTML:
<textarea>
PHP:
<!-- Using the Auto Render implementation as described in
https://developers.google.com/recaptcha/docs/display#auto_render -->
<!-- in <head> -->
<script src="https://www.google.com/recaptcha/api.js"></script>
<!-- in <form> -->
<div class="g-recaptcha" data-sitekey="SITE_KEY"></div>
答案 0 :(得分:0)
表格很可能格式错误,例如不匹配的HTML标签。检查chrome中的内容,并确保该表格环绕在验证码文本区域周围。