To aid in your debugging efforts, YQL provides the option to have network-level logging. When enabled, all network requests are uncached, so you can iteratively develop Open Data Tables more easily, as well as debug network requests between YQL and the remote service. Network logs display both the request headers and the response content for each network call.
Network capture stops once YQL encounters a default (built-in) table or table fetched from yql.storage, even if subsequent requests are made using an Open Data Table.
When you enable network-level logging, YQL provides a key within the
diagnostics element for each network call that occurs, seen in the following YQL
response snippet as id attributes:
The id key can be used within 5 minutes of an execution to see log
data.
To enable network-level logging, you simply append debug=true to the YQL
console URL or API query like this:
http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20geo.places%20where%20text%3D%22sunnyvale%22%0A&diagnostics=true&debug=true
You can access network-level logs within 5 minutes of running a YQL statement or call.
You can view the logs using the YQL Console or using the YQL log URL with the query string parameter id.
id attribute of the url element in the diagnostic information.
debug=true&diagnostics=true to one of the YQL Web service URLs.
For example: http://query.yahooapis.com/v1/public/yql?q=<your_query_statement>&debug=true&diagnostics=true
debug and diagnostics query parameters.
id key provided in the url element of the diagnostics information and append it to the YQL log URL as shown here: http://query.yahoo.com/v1/logging/dump?id=<id_value>