Why do we need to exchange a Firebase auth token for a session cookie?
I am implementing Firebase Auth on my application and am currently looking at this documentation as a guide: Firebase Guide
Is there any reason to use Cookies with Firebase Auth?
I am working on a new project which currently has Firebase Authentication in place. I haven’t worked with Firebase before and I am not sure if the current implementation makes sense or not. What happens is we call firebase to get an Auth token. Then we take that token and hit our backend which returns a Cookie. That Cookie then gets sent in Headers to verify the users identity.