我使用Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider进行访问令牌发布。在GrantResourceOwnerCredentials方法中,我需要可用的会话来处理我身边的一些逻辑。因为它不可用 - 它是REST web api,我在Global.asax中设置如下:
protected void Application_PostAuthorizeRequest()
{
HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);
}
此后仍为空。我需要做什么才能启动会话?