Reputation: 41
I'm trying to make a finance app that, for now, pulls stock quotes. My problem is detailed below:
{"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?
Upvotes: 4
Views: 865
Reputation: 10721
It's possible that you are running into a rate-limit problem.
I would enable the Diagnostics option - that will include in the output details of the calls made by YQL and whether any returned data. Here's a YQL Console link to your sample query, with diagnostics enabled:
select * from yahoo.finance.quotes where symbol="YHOO"
Upvotes: 1