-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refresh token format #1
Comments
can you please explain more about the issue you faced to help you? |
i am able to use my jwt token to authorize controller but when i use refresh token it gives error that refresh token is not in bearer format please convert refresh token also in bearer format so i can use it |
did you use the GenerateRefreshToken method at (Infrastructure/Identity/Services/AuthResponseService.cs) line 86? it's used in the SignUp method to provide the new user with a RefreshToken and in the Login method if the RefreshToken that the user has is not active, therefore you are logged out automatically and then get error 401 Unauthorized, so you have to log in again |
APi Response refactor
cannot authorize refresh token . i will get error 401 Unauthorized . invalid bearer token .
convert your refresh token in jwt bearer format
The text was updated successfully, but these errors were encountered: