Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using jQuery Version 1.5.1 to do the following ajax call:

$.ajax({
    dataType: 'jsonp',
    data: { api_key : apiKey },
    url: "http://de.dawanda.com/api/v1/" + resource + ".json",
    success: function(data) { console.log(data); },
    error: function(jqXHR, textStatus, errorThrown) { console.log(errorThrown); console.log(textStatus); }
});

The server responds with a valid json object:

{
  "response": {
    "type":"category",
    "entries":1,
    "params":{
      "format":"json",
      "api_key":"c9f11509529b219766a3d301d9c988ae9f6f67fb",
      "id":"406",
      "callback":"jQuery15109935275333671539_1300495251986",
      "_":"1300495252693"
    },
    "pages":1,
    "result":{
      "category":{
        "product_count":0,
        "id":406,
        "restful_path":"/categories/406",
        "parent_id":null,
        "name":"Oberteile"
       }
     }
   }
 }

But the success callback is never called, instead the error callback produces this output:

jQuery15109935275333671539_1300495251986 was not called
parsererror

Why does this happen?

I am using no additional libraries to jQuery.

EDIT:

If I try to make the ajax call with "json" as dataType instead of "jsonp", the server responds with an empty string.

share|improve this question

6 Answers

up vote 26 down vote accepted

JSONP requires that the response be wrapped in some kind of callback function.

So the server should respond with:

someFn({....});

The someFn is passed as part of the request, so the server needs to read it and wrap the data appropriately.

This is all assuming you're grabbing the content from another domain. If so, you're limited by the same origin policy: http://en.wikipedia.org/wiki/Same_origin_policy

share|improve this answer
1  
The API in the question is a public API by a vendor. It just restricts the calls to be jsonp only. Jsonp calls are answered, but as a normal Json object. – Thomas Mar 19 '11 at 12:44
4  
In this example, someFn is the callback, and the server should respond with: jQuery15109935275333671539_1300495251986({...}); – Adam Mar 24 '11 at 15:29
3  
+1 been struggling for this all day long.. -.- – Jose Faeti Aug 2 '11 at 21:21

After upgrading to Jquery 1.5 and attempting to make a call across domains I had the same problem. Eventually I found the $.getJSON worked. Specifically,

$.getJSON(url,
    function(data){
        yourFunction(data);
       return false;
    });

The URL I used was like this:

var url = WEB_SERVER_URL;
url = url + "&a=" + lat;
url = url + "&b=" + lng; ....
url = url + "&jsoncallback=?";

In the server, which is running on another server and I have control of this code was added:

PrintWriter writer = response.getWriter();
String jsonString = json.toString(JSON_SPACING);
String callback = request.getParameter("jsoncallback");
// if callback in URL and is not just the "?" (e.g. from localhost)
if (callback != null && callback.length() > 1)
{
    writer.write(callback + "(" + jsonString + ");");
}
else
{
    writer.write(jsonString);
}

(The json object is an instance of JSONObject, the code can be found here http://www.json.org/java/)

share|improve this answer

there is one little mistake :) You have to request .js and not .json.

$.ajax({
    dataType: 'jsonp',
    data: { api_key : apiKey },
    url: "http://de.dawanda.com/api/v1/" + resource + ".js",
    success: function(data) { console.log(data); },
    error: function(jqXHR, textStatus, errorThrown) { console.log(errorThrown); console.log(textStatus); }
});

Ah and did you notice, that there is a client for the api ? https://github.com/dawanda/dawanda-api-client-js

share|improve this answer
Thank you very much for your answer! The API works like a charm now :) I used the api client at first, but i want to stick with a jquery only approach. – Thomas Mar 21 '11 at 11:28
You can use the client with jQuery as well. It will automatically detect Prototype or jQuery and use the given methods. (Y) – sdepold Mar 21 '11 at 15:21

Why aren't you using $.getJSON for this?

share|improve this answer
1  
You don't have to use the $.getJSON method if you prefer the syntax of the $.ajax method. You just specify dataType: "json" in the settings object. – Adam Apr 28 '11 at 0:40
Yeah, thanks, I know that now. I was curious. – mattcurtis Apr 28 '11 at 1:03

You really shouldn't specify jsonp here. Just use json because you're just receiving a JSON string. json (json with padding) expects a javascript function execute. In that case you need to specify a "callback=" within your querystring. I guess that is.the reason why jQuery can't handle this aswell, there is a property with the name callback.

share|improve this answer
I get an empty string as an answer if I just use json for the request. Could it be the api is broken? And if so, is there a way to hack this in js? – Thomas Mar 19 '11 at 1:20
you mean "jsonp (json with padding)", not "json (json with padding)" – bear Mar 27 at 13:49

Try reading the response into an object using $.parseJSON:

success: function(data) {
    var json = $.parseJSON(data);
}
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.