1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-06-05 21:59:23 +02:00

Fix OAuth introspection endpoint

This commit is contained in:
Thomas Sileo
2023-02-03 08:55:31 +01:00
parent 625f399309
commit 4e1bb330aa

View File

@ -532,6 +532,10 @@ async def oauth_introspection_endpoint(
if not access_token: if not access_token:
return JSONResponse(content={"active": False}) 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( return JSONResponse(
content={ content={
"active": True, "active": True,