I read a lot about it, and I just can't figure it out. This has nothing to do with the MY code, it is related to the feed or something, because if I change it to a Twitter feed, it will return an Object, which is ideal.
$.getJSON('http://rockbottom.nozzlmedia.com:8000/api/portland/?count=1&callback=?',function(json){ console.log(json) });
And I get the error "wrong label". Any ideas?
Besides the side notes, I also tried the AJAX method:
$.ajax({ url: 'http://rockbottom.nozzlmedia.com:8000/api/portland/', dataType: 'jsonp', data: 'count=1', success: function(msg){ console.log(msg) } });
and both give the same exact error, and both work fine with the Flickr and Twitter examples, so this should be something to do with the feed, but I donβt have access to the feed, but I could ask them to fix it something their problem.
source share