方法 GetTokenAsync 不可用

Method GetTokenAsync unavailable

我正在关注 IdentityServer4 的快速入门。我在实现"Switching to Hybrid Flow and adding API Access back"教程的时候,发现获取access token的方法在一行:

ViewContext.HttpContext.Authentication.GetTokenAsync("access_token")

不可用。有人知道我必须使用什么方法吗?谢谢

问题是在我的 MVC 控制器中我有 using Microsoft.AspNetCore.Authorization;。该库允许使用 [Authorize] 属性,但有自己的 HttpContext.Authentication 命名空间。解决方案是添加 using Microsoft.AspNetCore.Authentication,现在我可以访问 GetTokenAsync 方法。