I am building a Flutter app that does a auth.SignInWithCredential({'accessToken'...,'idToken'...})
I want the application to do backend request, sending a Bearer token. On the backend I need to authenticate this user using firebase AND use the oAuth2 token for Google-services, because it is scoped.
I have no smart idea to do this (besides sending 2 tokens in the request headers, which seems to be overkill).