第6章 令牌撤銷端點(Token Revocation Endpoint) - IdentityModel 中文文檔(v1.0.0)
阿新 • • 發佈:2019-04-29
nas cep error new t address except ret href entity
OAuth 2.0令牌撤銷的客戶端庫是作為擴展方法提供的HttpClient。
以下代碼撤消撤銷端點處的訪問令牌令牌:
var client = new HttpClient(); var result = await client.RevokeTokenAsync(new TokenRevocationRequest { Address = "https://demo.identityserver.io/connect/revocation", ClientId = "client", ClientSecret = "secret", Token = accessToken });
響應屬於TokenRevocationResponse
類型使您可以訪問原始響應以及解析的JSON文檔(通過Raw
和Json
屬性)。
在使用響應之前,您應該始終檢查IsError
屬性以確保請求成功:
if (response.IsError) throw new Exception(response.Error);
github地址
第6章 令牌撤銷端點(Token Revocation Endpoint) - IdentityModel 中文文檔(v1.0.0)