在 asp.net 网络 api + angular 中,使用刷新令牌...如何在令牌过期前自动请求令牌

In a asp.net web api + angular, with refresh tokens... how do I automatically request a token before it expires

我开始使用 this tutorial 创建一个使用刷新令牌的应用程序示例。但是在应用程序中,用户必须单击按钮才能访问令牌并使用新令牌刷新它。我希望我的应用程序在到期前自动请求一个新的刷新令牌。我该怎么做?

您通常应该跟踪令牌到期的时间,然后在到期之前请求新令牌。在 OAuth2.0 中提早请求是可以接受的。