在owin katana OAuthAuthorizationServerProvider中的会话

时间:2017-09-01 14:39:31

标签: asp.net-web-api owin katana

我使用Microsoft.Owin.Security.OAuth.OAuthAuthorizationServerProvider进行访问令牌发布。在GrantResourceOwnerCredentials方法中,我需要可用的会话来处理我身边的一些逻辑。因为它不可用 - 它是REST web api,我在Global.asax中设置如下:

    protected void Application_PostAuthorizeRequest()
    {
       HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required);         
    }

此后仍为空。我需要做什么才能启动会话?

0 个答案:

没有答案