What is the purpose of JwtBearerOptions.SaveToken property in ASP.NET Core 2.0+?
问题 The Microsoft Docs just have this description: Defines whether the bearer token should be stored in the AuthenticationProperties after a successful authorization. I wondered if saving the JWT allows you to revoke it somehow, but every place I read about JWTs says they are irrevocable. What would you do with a JWT being stored in the AuthenticationProperties? 回答1: Storing the JWT in the AuthenticationProperties allows you to retrieve it from elsewhere within your application. For example, use