Testing Authentication In Postman

So we have our own server using passport/twitch.js… say we go to localhost:3000/api/auth/twitch… it will hit our endpoint to check if user is authenticated using passport-twitch. This will redirect a browser to twitch’s login screen to either enter credentials or redirect to the callback url specified in the registration. Works fine and dandy… If we do the same in postman, there isn’t a redirect to twitch login screen to authorize. So we are trying to find a way to hit our endpoint (localhost:3000/api/auth/twitch) through postman, allow a redirect to happen within postman, enter credentials, get redirected to our server callback and be authenticated. Are you saying this is not possible at all?