我几乎不知道有关POST请求或api的任何信息,因此你可以做得越多越明显。
我正在阅读向我的网站添加reCAPTCHA的说明,但我仍然坚持使用验证部分。这是我坚持的部分:http://code.google.com/apis/recaptcha/docs/verify.html
我不知道怎么做POST请求。如果有人可以向我解释这部分会有很大帮助。
这是我到目前为止在我的网站上的代码,直接从http://code.google.com/apis/recaptcha/docs/display.html#Standard复制:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<body>
<!-- ... your HTML content ... --> <form action="" method="post"> <!-- ... your form code here ... --> <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=public key"> </script> <noscript> <iframe src="http://www.google.com/recaptcha/api/noscript?k=public key" height="300" width="500" frameborder="0"></iframe><br> <textarea name="recaptcha_challenge_field" rows="3" cols="40"> </textarea> <input type="hidden" name="recaptcha_response_field" value="manual_challenge"> </noscript> <!-- ... more of your form code here ... --> </form> <!-- ... more of your HTML content ... -->
</body>
</html>
答案 0 :(得分:0)
使用te recaptcha PHP / Perl / Asp / ..插件或使用recaptcha ajax库,它使用javascript处理所有内容,因此您不需要服务器端脚本。