revokeCredentials 和 revokeToken 有什么区别?
What's the difference between revokeCredentials and revokeToken?
revokeCredentials
:撤销访问令牌并清除凭据对象
revokeToken
: 撤销对令牌的访问权限。
有什么区别?没有文档和示例来解释这两种方法here。
这没有很好的记录。
revokeToken
要求您将特定的 accessToken
传递给方法:
https://github.com/googleapis/google-auth-library-nodejs/blob/master/src/auth/oauth2client.ts#L801
revokeCredentials
不接受任何参数,并撤销当前在 OAuth2
实例中配置的访问令牌:
https://github.com/googleapis/google-auth-library-nodejs/blob/master/src/auth/oauth2client.ts#L827
希望对您有所帮助!
revokeCredentials
:撤销访问令牌并清除凭据对象
revokeToken
: 撤销对令牌的访问权限。
有什么区别?没有文档和示例来解释这两种方法here。
这没有很好的记录。
revokeToken
要求您将特定的 accessToken
传递给方法:
https://github.com/googleapis/google-auth-library-nodejs/blob/master/src/auth/oauth2client.ts#L801
revokeCredentials
不接受任何参数,并撤销当前在 OAuth2
实例中配置的访问令牌:
https://github.com/googleapis/google-auth-library-nodejs/blob/master/src/auth/oauth2client.ts#L827
希望对您有所帮助!