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.

I've got an AJAX request that expects JSON in response.

But there's a possibility that what gets returns may not be JSON, but rather an HTML error page (unfortunately, with response type 200).

How can I tell whether the response is JSON or not?

(I'm using jQuery, if that helps. But I can't use any plugins.)

share|improve this question
Why is it returning error message like in that format? I think you should return something in JSON format with error provided and you can easily parse it later. – Tarik Sep 2 '11 at 19:09
I have no control over what it returns. – jawns317 Sep 2 '11 at 19:15

5 Answers

up vote 17 down vote accepted

Well, if you are using jQuery and you specify the dataType property of the $.ajax() call to json then jQuery will try to parse the JSON, and if it isn't JSON should call the error() callback.

$.ajax({
    url: '/my/script.ext',
    dataType: 'json',
    success: function(data, textStatus, jqXHR) { /*YAYE!!*/ },
    error: function(jqXHR, textStatus, errorThrown) { /*AWWW... JSON parse error*/ }
});
share|improve this answer
+1 for THAT correct answer ;-) – Zoltan Toth Sep 11 '12 at 21:23

jQuery auto-detects the dataType:

If the response is JSON, a properly behaving application would set the Content-Type to application/json.

So all you have to do, if the server is well-behaving, is to test if the Content-Type header in the response starts with application/json.

By chance, jQuery already does this by itself:

$.get('/foo', function(data, status, xhr, dataType) {
    if ('json' === dataType) {
        // Yay that's JSON !
        // Yay jQuery has already parsed `data` 
    }
});

jQuery detects the dataType and passes it as 4th parameter of the callback function. If the dataType is JSON, it parsed the JSON string and parses the resulting value as first parameter of the callback.

share|improve this answer

Seems like a good use of try catch:

try {
   $.parseJSON(input)
} catch(e) {
   // not valid JSON
}
share|improve this answer
try {
    jQuery.parseJson(json_string_here);
} catch(e) {
   ... malformed json ...
}
share|improve this answer
Yes, by about 20 seconds... look at timestamps before making this kind of comment. – Marc B Sep 2 '11 at 19:32

jQuery parseJSON function can be used for this. It will throw an exception then you can catch it go ahead.

data = '{}';
try {
    json = $.parseJSON(data);
} catch (e) {
    // not json
}
share|improve this answer

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.