I want to have a Firestore collection that can only be accessed by a specific Firebase installation. For example,
/MyPrivateInstallationCollection/{FirebaseInstallationID}
According to the docs, Firebase Installation auth tokens exist but they are different to Firebase Auth tokens. https://firebase.google.com/docs/projects/manage-installations#retrieve_auth_tokens
In Firestore security reference docs, there is no trace of Installation IDs. https://firebase.google.com/docs/reference/rules/rules.firestore.Request
Is it possible to use Firebase Installation Tokens from Firestore security rules?
How can FIS auth tokens be validated? How are they supposed to be used?