yql.js revision 7368220dd87582da2552f8152bbff2508e5ddf1d
e0e25f8d302fa5ef03a5960832fd3eefec659ce3Matt Sweeney * This class adds a sugar class to allow access to YQL (http://developer.yahoo.com/yql/).
e0e25f8d302fa5ef03a5960832fd3eefec659ce3Matt Sweeney * @module yql
651f50fab63220a4fdab7ac7bdd363ec676713aaMatt Sweeney * Utility Class used under the hood my the YQL class
651f50fab63220a4fdab7ac7bdd363ec676713aaMatt Sweeney * @class YQLRequest
651f50fab63220a4fdab7ac7bdd363ec676713aaMatt Sweeney * @constructor
* @param {Function/Object} callback The callback to execute after the query (Falls through to JSONP).
* @param {Object} opts An object literal of configuration options (optional): proto (http|https), base (url)
if (!params) {
params = {};
_opts: null,
_callback: null,
_params: null,
send: function() {
* @description The base URL to query: query.yahooapis.com/v1/public/yql?
* @description The environment file to load: http://datatables.org/alltables.env
* This class adds a sugar class to allow access to YQL (http://developer.yahoo.com/yql/).