我正在尝试创建一个快速的Web应用程序,以对用户的Yahoo帐户进行身份验证,但是我在获得“用户批准”时遇到了麻烦。
就我个人而言,每次我访问外部网站并进行身份验证时,通常都会登录我的帐户。这似乎将我重定向到页面并要求输入代码。我有0个想法,我需要提供什么代码才能进行身份验证。如果我不知道,我的用户肯定不会!我正在构建一个Flask应用程序,并且我尝试围绕this repo进行代码建模。
我已经添加了一些专门针对Yahoo的代码,但似乎无法解决问题。下面的oauth.py文件中的新YahooSignIn子类:
class YahooSignIn(OAuthSignIn):
def __init__(self):
super(YahooSignIn, self).__init__('yahoo')
self.service = OAuth2Service(
name='yahoo',
consumer_id=self.consumer_id,
consumer_secret=self.consume_secret,
authorize_url='https://api.login.yahoo.com/oauth/v2/request_auth',
access_token_url='https://api.login.yahoo.com/oauth/v2/get_token',
base_url='http://fantasysports.yahooapis.com/'
)
def authorize(self):
return redirect(self.service.get_authorize_url(
scope='email',
response_type='code',
redirect_uri=self.get_callback_url())
)
def callback(self):
def decode_json(payload):
return json.loads(payload.decode('utf-8'))
if 'code' not in request.args:
return None, None, None
oauth_session = self.service.get_auth_session(
data={'code': request.args['code'],
'grant_type': 'authorization_code',
'redirect_uri': self.get_callback_url()},
decoder=decode_json
)
me = oauth_session.get('me?fields=id,email').json()
return (
'yahoo$' + me['id'],
me.get('email').split('@')[0],
me.get('email')
)
唯一的其他更改是在index.html页面上添加了带有'yahoo'参数的附加链接
<p><a href="{{ url_for('oauth_authorize', provider='yahoo') }}">Login with Yahoo</a></p>
任何帮助将不胜感激,因为这过去两个晚上使我难堪,我很乐意走过去!
答案 0 :(得分:0)
今年之前(2018/19),我一直在使用Yahoo的Oauth 1.0 API。今年,我在使用它时遇到了问题,因此我通过下面链接的yahoo-oauth库切换到使用Oauth 2.0。他们有一个漂亮的页面,描述了如何使用他们的库。这是我使用的代码。
from yahoo_oauth import OAuth2
class YahooFantasyAPI:
def fetchGameID(self):
session = self.getSession()
r = session.get(
'https://fantasysports.yahooapis.com/fantasy/v2/game/nfl'
)
print(r.text)
def getSession(self):
oauth = OAuth2(None, None, from_file='oauth2.json')
if not oauth.token_is_valid():
oauth.refresh_access_token()
return oauth.session
api = YahooFantasyAPI()
fetchGameID()