In my web application, I am using Firebase for Authentication, to access any API, I have to authenticate from firebase.
Question: How can I get access token of firebase in Postman?
I have 2 solutions for this problem:
1) Get Access Token from firebase in postman, store that access token in postman global env. variable and then I can do other API request. (Here I don't know how to get access token in postman)
2) Do the login in the browser, copy access token from network request, store it in bash_profile
and then use it in Postman. (Here I don't know how to read OS env. variable)