I am using Fan Feedr API and I am having trouble displaying JSON as view-able data. I am able to get the content succesfully however I seem to be having issues displaying the data in my console or as HTML on success…
Here is my jQuery…
$.ajax({
url:'http://ffapi.fanfeedr.com/basic/api/teams/3575a829-cae3-574e-a56a-60b6b1b5a7b7/content?api_key=097879879',
dataType: "jsonp",
success: function(data){
console.log('success');
console.log(data);
}
});
My HTML…
<div class="result"></div>
And a fiddle I started…
http://jsfiddle.net/krishollenbeck/vKTaZ/1/
I feel like this should work, so I am thinking I am missing something basic. But I can’t seem to spot it. Any help is much appreciated. Thanks in advance.
Fan Feedr link… http://developer.fanfeedr.com/
The FanFeedr API does not (currently) support JSONP, so you cannot make a cross-domain request in this manner.