Issue with Yahoo Sports API
问题 I am trying to setup a simple app that consumes the Yahoo Fantasy sports API, and allows queries to be executed through YQL. class Program { static void Main(string[] args) { string yql = "select * from fantasysports.games where game_key in ('268')"; //var xml = QueryYahoo(yql); // Console.Write(xml.InnerText); string consumerKey = "--my key--"; string consumerSecret = "--my secret--"; var xml = QueryYahoo(yql, consumerKey, consumerSecret); Console.Write(xml.InnerText); } private static