Question

I'm trying to verify a Recaptcha using jQuery, but I keep getting an error telling me: Access to restricted URI denied" code: "1012

This is what I've tried so far:

 var challengeVal = $("#recaptcha_challenge_field").attr("value");
 var reponseVal = $("#recaptcha_response_field").attr("value");
 var remoteIp = <%= "'" + Request.ServerVariables["REMOTE_HOST"] + "'" %>
 var privateKey = 'MY_PRIVATE_KEY';

 var requestUrl = "http://api-verify.recaptcha.net/verify?privatekey=" + privateKey + "&remoteip=" + remoteIp + "&challenge=" + challengeVal + "&response=" + reponseVal;

 $.ajax({
    type: "POST",
    url: requestUrl,
    dataType: "json",
    success: function(data) {
       alert('response from recaptcha');
    },
    error: function() {
       alert("An error occured.");
    }
  });

Anyone tried this, who can point me in the right direction?

Thanks.

Was it helpful?

Solution

JavaScript is prohibited from making cross-domain XMLHttpRequests for security reasons. There are workarounds, but they only work if you control both domains.

Solution: Make an AJAX-call to your own server, and contact recaptcha through server side code.

OTHER TIPS

i would look -> racaptcha docs AJAX there is a full example in javascript.

A full demo can be found and downloaded from this page. But you still need to generate the public and private keys for your domain here https://www.google.com/recaptcha/admin/create

@Magnar already answered w/ respect to the security reasons. @Guido Lemmens 2 gave a PHP example. I wanted to add some ASP.NET WebForms (vs. MVC) code from another Stack question.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top