我需要创建并返回这样的令牌:
@app.route('/account/login', methods=['POST'])
def login():
if user:
...
return authorization.create_token_response(request={
'client_id': '',
'client_secret': '',
'grant_type': 'password',
'username': '',
'password': ''
})
else:
...
但我不知道如何构建接收的request
对象create token response
。你能帮我吗 ?
Obs :我需要过滤输入数据,我不想使用/oauth/token
你可以在这里看到