我有一个本机Windows客户端应用程序,它根据Identity Server对用户进行身份验证。登录工作正常。但是,我无法退出用户。
Here is the link of the source code that I am using
我尝试了logoutAsync方法而没有运气。用户登录后,每当我启动应用程序并单击登录时,它都会自动为用户签名。
答案 0 :(得分:0)
在示例中,您在LogoutButton_Click内部提供的代码已被注释掉。
private async void LogoutButton_Click(object sender, EventArgs e)
{
// await _oidcClient.LogoutAsync(trySilent: Silent.Checked);
// AccessTokenDisplay.Clear();
// OtherDataDisplay.Clear();
}