I am writing a custom backend (nestjs) in which I want to verify if the token from firebase auth is valid and retrieve user information too.
I do not want to use the actual firebase auth so I ended up using firebase local emulator.
Now I want to test my endpoint written in nestjs using postman wherein I send the unsigned token from postman for nestjs to verify from local emulator. But I couldn't find a way to create an unsigned token without creating a UI for the same, I really do not want to spend time in creating a react application to just console.log
a token. Is there any better way to do this that I might be missing ??
Thanks for the help.