I have an application that has a login page ( user name and password). Once authenticated successfully I receive the access_token, expiration, refresh token and other claims from the auth server.
Where do I need to store those tokens in the browser so that for the other API request I can pull the access_token and attach to the header of the API?
Is it good practice and safe to store those tokens in localStorage of the browser?
Because those tokens are exposed when we look at them in Developer tools (chrome).