I almost have the thing working but I can't get past a parsing issue. If anyone can help I would be very thankful!

I am trying to query Yahoo Finance API and parse the results using jQuery. Here is my code to do so:

  <script>
$(document).ready(function(){

var url = "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20WHERE%20symbol%3D'NPO'&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback";

$.getJSON(url + "&format=json&jsoncallback=?", function(data) {
  var items = [];

  $.each(data, function(key, val) {
    items.push('<li id="' + key + '">' + val + '</li>');
  });

  $('<ul/>', {
    'class': 'my-new-list',
    html: items.join('')
  }).appendTo('body');
});


});
</script>

But I am getting this error: enter image description here

Any help overcoming this error would be much appreciated.

Thanks!

link|improve this question

67% accept rate
Im sorry , I thought , I have some experience in jquery, but what does the $('<ul/>', {.... part do? – tildy Dec 8 '11 at 15:42
feedback

3 Answers

up vote 1 down vote accepted
  • jsoncallback parameter is not used by the service.
  • You even don't have to specify callback parameter. It is added by the getJSON()
  • format parameter is already specified in url
  • Your items array is storing objects as the data are under data.query.results.quote

Try this:

var url = "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20WHERE%20symbol%3D'NPO'&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";

$.getJSON(url, function(data) {
  var items = [];
  $.each(data.query.results.quote, function(key, val) {
    items.push('<li id="' + key + '">' + val + '</li>');
  });
  $('<ul/>', { 'class': 'my-new-list', html: items.join('')}).appendTo('body');
});

Working code is HERE.

link|improve this answer
+1 for also drilling down to the actual desired content in the response. – RightSaidFred Dec 8 '11 at 16:04
This worked perfectly thanks! – mitch Dec 8 '11 at 16:19
feedback

YQL uses a callback=? parameter, not jsoncallback=? try this:

var url = "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20WHERE%20symbol%3D'NPO'&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";

$.getJSON(url + "&format=json&callback=?", function(data) {

Edit: Note, the url had to change too.

link|improve this answer
Did you try that url? Sends back an error response. ?({"error":{"lang":"en-US","diagnostics":{"publiclyCallable":"true"},"descripti‌​on":"Invalid JSON callback parameter ?"}}); – RightSaidFred Dec 8 '11 at 15:51
yes. this is what it should result in: http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20yahoo.finance.qu‌​otes%20WHERE%20symbol%3D'NPO'&format=json&diagnostics=true&env=store%3A%2F%2Fdata‌​tables.org%2Falltableswithkeys&callback=foo where foo is the callback name set by jquery – Kevin B Dec 8 '11 at 15:52
Yep, works. I didn't see that you modified the url string too. +1 – RightSaidFred Dec 8 '11 at 15:55
feedback

Works fine for me when you remove the &jsoncallback=?.

$(document).ready(function() {

    var url = "http://query.yahooapis.com/v1/public/yql?" +                    
              "q=select%20*%20from%20yahoo.finance.quotes%20WHERE%20symbol%3D'NPO'" + 
              "&format=json&diagnostics=true" + 
              "&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";

    $.getJSON(url, function(data) {

        console.log( data );

    });
});

You actually already have the format=json in the main string.

JSFIDDLE DEMO

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.