Sono venuto qui nella mia ricerca, non ho visto una risposta e quindi ho continuato a cercare.
Dopo la mia ricerca, questa finestra era ancora aperta, quindi sto aggiornando questo post con i miei risultati.
Ecco dove è possibile conoscere reCAPTCHA :
http://scraping.pro/no-captcha-recaptcha-challenge/
Fondamentalmente, però, lo aggiungi alla tua pagina web:
<script src="https://www.google.com/recaptcha/api.js" >;
<form method="post">
<div class="g-recaptcha" data-sitekey="[site key issued by google]"></div>
<input value="submit" type="submit" />
</form>
Per ottenere le tue chiavi reCAPTCHA , vai a questo sito Google:
https://www.google.com/recaptcha/intro/index.html
Una volta che hai le tue chiavi usando il link sopra, puoi approfondire la codifica usando le seguenti informazioni di Google:
https://developers.google.com/recaptcha/
NOTA:
Dalla documentazione di Google:
Lo script deve essere caricato utilizzando il protocollo HTTPS e può essere incluso da qualsiasi punto della pagina senza restrizioni.
Ecco un esempio di come l'ho fatto funzionare:
<html>
<head>
<title>Contact</title>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script>
var onloadCallback = function () {
grecaptcha.render('dvCaptcha', {
'sitekey': '<%=ReCaptcha_Key %>',
'callback': function (response) {
$.ajax({
type: "POST",
url: "CS.aspx/VerifyCaptcha",
data: "{response: '" + response + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (r) {
var captchaResponse = jQuery.parseJSON(r.d);
if (captchaResponse.success) {
$("[id*=txtCaptcha]").val(captchaResponse.success);
$("[id*=lblAlarm]").hide();
} else {
$("[id*=txtCaptcha]").val("");
$("[id*=lblAlarm]").show();
var error = captchaResponse["error-codes"][0];
$("[id*=lblAlarm]").html("RECaptcha error. " + error);
}
}
});
}
});
};
</script>
</head>
<body>
<form action="?" method="POST">
<div id="dvCaptcha" class="g-recaptcha" data-sitekey="[site key issued by google]"></div>
<br />
<asp:Button ID="btnSubmit" runat="Server" Text="Send" OnClick="btnSubmit_Click" />
<asp:Label ID="lblAlarm" runat="server" ForeColor="Red"></asp:Label>
</form>
</body>
</html>
Se devi convalidare nel code-behind ASP.NET, verifica semplicemente che il controllo "g-recaptcha-response" sia compilato:
protected static string ReCaptcha_Key, ReCaptcha_Secret;
protected void btnSubmit_Click(object sender, EventArgs e)
{
if (!String.IsNullOrEmpty(Request.Form["g-recaptcha-response"]))
{
// other code
} else
{
lblAlarm.Text = "reCAPTCHA failed.";
}
}
Spero che alcuni di voi lo trovino utile.