User7
User7

Reputation: 25

Disable current refresh token Google calendar API V3

How can I turn off all the refresh tokens google calendar?

Cumps

Upvotes: 0

Views: 566

Answers (1)

Jay Lee
Jay Lee

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.

To revoke a refresh token:

curl https://accounts.google.com/o/oauth2/revoke?token=<refreshtoken>

To prevent receiving of a refresh token:

access_type=online

Upvotes: 1

Related Questions