简体   繁体   中英

How many times can firebase serve, the "currentUser.getIdToken() and verifyIdToken()" requests, for the particular user?

I have to verify current user server side, so I need to send Id token, every-time a user calls the server. Which means I need to generate the Id token every time on the client-side. So, does firebase has any limit on this, like generating and verifying the user based on the Id token?

verifyIdToken() and getIdToken() are functionality offerings from Firebase Authentications.

Firebase Authentication is a completely free service (Except PhoneAuth), you are allowed to have as many users you want, thus there ain't a rate limiting for verifyIdToken. (For phone auth as well, the charges are only for initial authentication on client-side, not for id tokens)

Lastly there are limits for API calls , but way too generous for any project.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM