perf: 修改OAuth2的access_token前缀格式

pull/10248/head
jiangweidong 2023-04-18 09:59:31 +08:00 committed by Jiangjie.Bai
parent 5a34372ca5
commit cad88560bb
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class OAuth2Backend(JMSModelBackend):
headers = {
'Accept': 'application/json',
'Authorization': 'token {}'.format(response_data.get('access_token', ''))
'Authorization': 'Bearer {}'.format(response_data.get('access_token', ''))
}
logger.debug(log_prompt.format('Get userinfo endpoint'))