I am implementing web application using angular and asp.net core. I made custom authentication using Jwt .NET libraries. I am not using any identity server provider. After authenticate the user I return access token with refresh token:
{access_token:""eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9....", refresh_token:"GDSDSGFDS..."}
When request refresh token should I send the expired access token and validate it or refresh token is enough?
I read about not storing the refresh token in the browser (angular side). Is there another option to apply the refresh token scenario?