yahoo-oauth
yahoo-oauth copied to clipboard
Yahoo OAuth Library
Thanks for a great library. I have a process which is very long running, and I am having trouble with auth token expiring. This is despite my calling the refresh_token...
Yahoo Fantasy API has a rate limit of 2,000 unsigned API calls per hour and 20,000 signed calls per hour. It might be something on my end, but the oauth.session.get()...
Hey Josue thanks for this lib, saved me some time ! Maybe somebody's going to need some examples how to get yahoo gemini reports Here's what worked for me ```...
I am having issues in getting the refresh token. Below is error callback_uri oob raw_access ac_tkn {u'error_description': u'Failed to decode/encode refresh token', u'error': u'INVALID_REFRESH_TOKEN'} self.access_token = parsed_access['access_token'] KeyError: 'access_toke
I have copied my consumer_key and consumer_secret into a json file and run the script: ``` from yahoo_oauth import OAuth2 oauth = OAuth2(None, None, from_file='oauth2.json') ``` My browser goes to...
hello, this is the best python lib i have found to access yahoo oauth2. i have get access token using this lib. but when i tried to send request to...
How to use this library (non interactively)when having `access_token` and `refresh_token`? I obtained these using this flow: https://developer.yahoo.com/oauth2/guide/flows_authcode/ I need this to use this library: https://github.com/spilchen/yahoo_fantasy_api/
Resolves #65