Revoke the refresh token for .Net-based thick clients

Revoke a refresh token when user authorization is no longer required or when the token must be invalidated for security or lifecycle management purposes.

Revoking the refresh token prevents further access token generation by the client and ensures that previously granted authorization cannot be reused.

Use the provided API call in the client implementation to explicitly revoke the refresh token during logout or credential rotation.


      _revokeToken(this.RefreshTokenTextBox.Text, OAuth2Constants.RefreshToken);