Reputation: 23
I am implementing a Google calendar for multiple users with a user consent screen in my application with Oauth2.0 using python but facing issues with refresh token quota limit. I found a refresh token quota limit in google docs. But they also mentioned that there is no limit for service account but service account is not for Google APIs on behalf of end-users, and user consent is sometimes required.
Is there any way to increase the refresh token quota limit? or is there any way to implement with a service account
please help me how it can be done and what I am doing wrong
Upvotes: 0
Views: 57
Reputation: 26806
The documentation might be a bit confusing, but actually it is up to 50 refresh tokens per user!
So, if you have 1000 users, each of them can still use 50 refresh tokens - that is authenticate your application 50 times before the old tokens will be expired in favor of the newer ones.
Upvotes: 1