Exemplo n.º 1
0
 /// <summary>
 /// 服务器中移除oauthEntity
 /// </summary>
 /// <param name="refeshToken"></param>
 /// <param name="oauthEntity"></param>
 private void RemoveOauthFromStore(string refeshToken, OAuthEntity oauthEntity)
 {
     tokenService.RemoveRefreshToken(refeshToken);
     tokenService.ReomveAccessToken(oauthEntity.Access_Token);
     tokenService.ReomveUserName_OAuthEntity(oauthEntity.UserName);
 }