JSON API returning no response
-
I am working to get the json api plugin working properly on a fresh install of wordpress.
I am using jquery to instigate a json request and Firebug is reporting that the request is in fact sent, but there is absolutely no response. Firebug is displaying the GET request in red in the console with a status code of 200 OK. Its kinda bizarre. I’ve tested to make sure I can make other json requests and they come through fine.
The jquery I’m using is this:
$.ajax({
url: “wordpressinstall/?json=1”,
dataType: “json”,
success: function(data) { console.log(data); }
});Has anybody experienced a similar problem?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘JSON API returning no response’ is closed to new replies.