Hi all,
I am working on a Flutter application that allows users to sign in via Google and Facebook using Firebase. After signing in, a user get's an auth token from Firebase. I'd like to send this auth token alongside each gRPC call so the server can authenticate the signed in user.
Is there a recommended approach for doing so from a Dart gRPC client (the Flutter app)? I've dug around the docs and haven't found much, other than manually writing the auth token to the request's metadata (not sure if this is the right way to go).
Thanks ahead of time!
- Matt