How to list all active firebase ci tokens, or revoke them all
I realize you can create a firebase token by using firebase login:ci You can revoke an individual token by doing firebase logout --token <token> But how do you either a) revoke all of them, or b) list all the active tokens? I want to make sure there aren't leftover tokens that are still active on a project. Ravi Shankar Bharti These tokens are Google OAuth2 refresh tokens (see bullet 4 in Google Identity Platform ). Their number is limited (i guess it is 25 ). The easiest way to explicitly revoke a token is to use firebase logout --token <token> as you mentioned. I do not know of an API for