I am trying to set up a simple application that consumes the Yahoo Fantasy sports API and allows queries through YQL.
class Program { static void Main(string[] args) { string yql = "select * from fantasysports.games where game_key in ('268')";
There are some hidden ones here, I have a custom class to make url ok for Yahoo API. Here is the url structure returned by the OAuth.GetUrl () method
http: // query % 20% 28% 27268% 27% 29 & oauth_signature = NYKIbhjoirJwB6ADxVq5DOgLW1w% 3D
With this, I always seem to get an Authentication Error. Fantasysports.games table requires a higher level of security than expected, you have provided an APP, but at least USER is expected
I'm not sure what this means, I pass my auth information to the api, but it seems to me that I need more permissions. Does anyone have a working example of this. If necessary, I can provide the code to the GetUrl method, but this is more or less a copy from here
http://andy.edinborough.org/Getting-Started-with-Yahoo-and-OAuth
Let me know if you have any questions. Thanks!
source share