i am trying to experiment with the tumblr api. i tried
$(function() {
$.getJSON("http://jiewmeng.tumblr.com/api/read/json", function(data) {
$("#postsContainer").append(data);
});
});
but got a 200 OK with empty response in firebug. when i navigate to http://jiewmeng.tumblr.com/api/read/json, i see the data. so i shld be getting something rather than a empty response?