AuthorizationCodeReceived会话为null

时间:2018-11-25 13:19:07

标签: .net microsoft-graph msal

基于示例msgraph-training-aspnetmvcapp,还通过Visual Studio 2017创建了Web项目 https://github.com/hannespreishuber/demoAuthorizationCodeReceivedSessionNull 我的问题是ctp中ctx中的Session为空

 AuthorizationCodeReceived = (context) =>
                    {
                        var code = context.Code;
                        var ctx = context.OwinContext.Environment["System.Web.HttpContextBase"] as HttpContextBase;
在MSgraph示例中

-同一代码具有一个会话对象-查看我的GitHub存储库以获取详细信息。 我的猜测是,AuthorizationCodeReceived是在不同类型的上下文(线程?)中执行的,并且上下文是错误的。

0 个答案:

没有答案