I am planning to use firebase Admin API to validate all protected APIs from client. Question I have is
- Is there any API limit for verifyIdToken( Firebase documentation does not cover it clearly
- Will there be any potential delay or performance issue in relying on these API for all my protected routes?
...
const user = await admin
.auth()
.verifyIdToken(req.headers.authtoken);
...
question from:https://stackoverflow.com/questions/65848723/firebase-admin-api-limit-verifyidtoken