perf: 修改OAuth2的access_token前缀格式

This commit is contained in:
jiangweidong
2023-04-18 09:59:31 +08:00
committed by Jiangjie.Bai
parent 5a34372ca5
commit cad88560bb

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'))