We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4970a3 + b071ba8 commit 82df79eCopy full SHA for 82df79e
Backend/FastAPI/routers/jwt_oauth_users.py
@@ -139,6 +139,7 @@ async def oauth_user(token : str = Depends(OAuth2)):
139
detail = " El Token ha expirado ❌ "
140
)
141
142
+ # except JWTError:
143
except JWTError: # Captura cualquier otro error relacionado con JWT.
144
# Si no se encuentra, se devuelve un error 400 (Bad Resquest).
145
raise HTTPException(
0 commit comments