I’ve successfully used Postman to update access tokens in the past, but it’s not working for me now, though I haven’t changed any of the settings. I click “Get New Access Token” in postman and am redirected to the auth0 login page. It appears to be successful, but then I’m redirected to Postman which has the message: Authentication Failed. Couldn’t complete Authentication. Check the postman console for more details."
The postman console shows a 401 unauthorized response.
After successfully logging in, you should get a code which you can use to exchange for an Access Token by calling the /oauth/token endpoint.
Please note that you will need to call the /authorize on a browser and then you can use Postman to call the /oauth/token endpoint. This is because the /authorize endpoint requires user interaction, specifically, it requires the user to log in.
Once that is complete, you should get an Access Token for your application.