how to access Price from Yahoo api

how to access Price from Yahoo api

Hi
I'm using the following Rest call

http://finance.yahoo.com/webservice/v1/symbols/GSK/quote?format=json&callback=?

When I put this in the browser I can see the returned data in json format.

I now need to access the price, so I've added the following code to the webpage:

  1. $(document).ready(function() {
  2. var wsURL="http://finance.yahoo.com/webservice/v1/symbols/GSK/quote?format=json&callback=?";
  3. $.getJSON(wsURL, function (dataone) {
  4. var test1 = dataone.list.resources.resource.fields.price;
  5.  $('#price').html(dataone);
  6. });
  7. });

When the code is executed it doesn't work. I think I've got the path (line 4) wrong. any ideas?