Nyoman Pradipta Dewantara
Nyoman Pradipta Dewantara
After I tested fastapi-jwt-auth in my client project and finished my client project, maybe at the end of January or mid-February
Glad to hear that đ, I love this idea â¤ī¸ we can discuss it much more while I make this improvement later. I leave this [link](https://nhsconnect.github.io/FHIR-ReasonableAdjustments-API/design_jwt.html) for an example of...
> Thank you @IndominusByte đ . I am excited for this. > If I may suggest this feature as well: sometimes you want the user_id to override the scopes required...
> I have made this modification in order to check for permissions, it works both in http and ws: > > ``` > class NotEnoughPermissions(AuthJWTException): > def __init__(self,status_code: int, message:...
refresh_token just like an access_token it's better to send it from the header because it makes frontend easy to access the endpoint from the backend without having to replace the...
ahh make sense, it was my first time saw the best practice to send refresh token via body payload, thank you for sharing with me @brunohenriquy đ đ, I will...
Thanks! you can make PR to me, click this [link](https://indominusbyte.github.io/fastapi-jwt-auth/contributing/) for information on how to contribute
another way to use fastapi-jwt-auth, you can change the **header name** and **header type** for more information detail you can check in [docs](https://indominusbyte.github.io/fastapi-jwt-auth/configuration/headers/)
for right now it's not possible âšī¸, but I think it's a good idea to set header type by list, I will update in the next version đ, for right...
yeah, you right but it depends on perspective its can 401 or 422, for all jwt decode error raised status code 422 for simplicity, in your opinion should I change...