Reputation: 25
How can I turn off all the refresh tokens google calendar?
Cumps
Upvotes: 0
Views: 566
Reputation: 13528
It's not clear whether you wish to revoke an existing refresh token or prevent refresh tokens from being included when you authorize.
curl https://accounts.google.com/o/oauth2/revoke?token=<refreshtoken>
To prevent receiving of a refresh token:
access_type=online
Upvotes: 1