Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ahoy!

I am using a WCF service to handle ajax calls from a web server on a seperate domain (therefore employing JSONP). My call looks like this:

$.ajax({
    dataType: 'jsonp',
    type: 'GET',
    url: 'http://localhost/s.svc/login?callback=?&l=en&e=foo&p=bar',
    success: function (serverData) {
        // [...]
    },
    error: function (jqXHR, textStatus, errorThrown) {
        // [...]
    }
});

The response I get from the server looks like this:

?({"DataIsValid":true,"ErrorOccurred":false,"EmailAddressValidationMessage":"","PasswordValidationMessage":""});

And jQuery subsequently throws a parsererror when reading it.

The response above looks like valid JSON and, per the documentation, I think "?callback=?" is appropriate for $.ajax calls using JSONP.

Thanks in advance for pointing out what I am obviously missing :-)

share|improve this question

1 Answer

callback=? should be present at the end of the url according to this.

url: 'http://localhost/s.svc/login?l=en&e=foo&p=bar&callback=?',
share|improve this answer
Appending it to the end instead did not resolve this, but it did bring my attention to the documention that you are referencing. jQuery appends "callback=?" to the end of the URL when specifying dataType "jsonp" so my addition to the URL is redundant. However, I still get the same parsererror :-( – Adam Aug 4 '12 at 17:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.