I'm trying to make a finance app that, for now, pulls stock quotes. My problem is detailed below:
- On the developer's console (http://developer.yahoo.com/yql/console/), I will click "show community tables" on the right under "Data Tables"
- I type in 'select * from yahoo.finance.quotes where symbol="YHOO" ' for my YQL statement
- I click the JSON radio button
- I erase "cbfunc" and uncheck the Diagnostic checkbox
- I click "test" and what I want to appear appears: { "query": { "count": 1, "created": "2012-12-03T09:11:12Z", "lang": "en-US", "results": { "quote": { "symbol": "YHOO", "Ask": null, ... etc
- Under "The Rest Query", it gives me a link that I can use to access what is displayed. That link, which my program calls, does not work. It shows
{"query":{"count":0,"created":"2012-12-03T09:12:44Z","lang":"en-US","results":null}}
instead, but not always - sometimes it works and sometimes it doesn't.
Does anyone know why?