Fix OAuth introspection endpoint

This commit is contained in:
Thomas Sileo 2023-02-03 08:55:31 +01:00
parent 625f399309
commit 4e1bb330aa
1 changed files with 4 additions and 0 deletions

View File

@ -532,6 +532,10 @@ async def oauth_introspection_endpoint(
if not access_token:
return JSONResponse(content={"active": False})
is_token_valid, _ = await _check_access_token(db_session, token)
if not is_token_valid:
return JSONResponse(content={"active": False})
return JSONResponse(
content={
"active": True,