Hi, I'm endeavoring to access fantasy information from my private fantasy football league using a Java program (no web interface). I've got the OAuth setup and I am able to access information on public leagues, yet when I try to access my private league via
http://fantasysports.yahooapis.com/fantasy...ue/mlb.l.482246I get the following response:
<?xml version="1.0" encoding="UTF-8"?>
<error xmlns="http://www.yahooapis.com/v1/base.rng" xml:lang="en-us" yahoo:uri="http://fantasysports.yahooapis.com/fantasy/v2/league/mlb.l.482246" xmlns:yahoo="http://www.yahooapis.com/v1/base.rng">
<description>You are not allowed to view this page because you are not in this league.</description>
<detail/>
</error>
I used by yahoo ID to get the OAuth consumer key/secret. How do I say "I am in this league"? I've tried using OpenID but haven't found any good examples for Java-only code. Any advice at all would be VERY appreciated (as I've spent countless hours googling). Thanks.