Refresh token in header as "Authorization: Bearer" for refresh method #1607
Replies: 6 comments
-
What backend servers require this? Does this mean the server doesn't have an access token? |
Beta Was this translation helpful? Give feedback.
-
FastAPI JWT Auth, I mean, they require the "refreshed token" to be placed in the "Authorization: Bearer" header. |
Beta Was this translation helpful? Give feedback.
-
+1 for this feature please |
Beta Was this translation helpful? Give feedback.
-
i have same problem. flask JWT require FreshToken as Bearer in header |
Beta Was this translation helpful? Give feedback.
-
Hey, i have solved this issue by getting the refresh token by get_raw_jwt() function. Nuxt js logout function:
FastAP refresh invoke function:
FastAPI access invoke function:
|
Beta Was this translation helpful? Give feedback.
-
I am also having this issue. My IDP requires a valid token for the /refresh endpoint. It can be a refresh or an access token. If I use the
|
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
Some backend servers require the refresh_token to be passed as: "Authorization: Bearer " header.
Describe the solution you'd like to see
Create an option to pass the refresh_token as "Authorization: Bearer " for Refresh method.
Beta Was this translation helpful? Give feedback.
All reactions