fix: perf: 修改OAuth2的access_token前缀格式

pull/10334/head
Bai 2023-04-20 14:58:41 +08:00 committed by Jiangjie.Bai
parent e90d8c8561
commit 6e2e92be5e
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'))