firebase / firebase/firebase-admin-go
FR: Don't require constant connectivity to Google for verifying ID tokens
- Dominant language
- Go
- Stars
- 1.3k
- Forks
- 274
- Avg merge
- 10h 39m
- Merged PRs (30d)
- 2
Description
The `VerifyIDToken()` method on the auth Client downloads Google's signing certificates from https://www.googleapis.com/robot/v1/metadata/x509/securetoken@system.gserviceaccount.com in the background when verifying a user ID token.
Unfortunately, in some environments, connecting to Google is either unreliable or not directly possible. In my case, my Hetzner VServer's IPs get regularly blocked by Google (see https://bsky.app/profile/juliusv.com/post/3lczuagphbs2w), although verifying Firebase tokens is the only thing my backend does in terms of external connectivity. In this kind of situation, I would really like to have more control over the downloading of these certificates, for example some alternative means of providing the certificate externally without the SDK connecting directly to Google. Then at least I can manage around the IP blocks somehow.
Contributor guide
Assessment
This issue has not been assessed yet.