在B2C中包含状态数据登录

时间:2016-04-01 13:53:41

标签: azure azure-ad-b2c

用户打开包含查询字符串参数的页面,之后他们需要登录Azure B2C。登录完成后,我希望返回查询字符串值,但无法确定如何执行此操作。目前最好的选择似乎是将其作为州数据包括在内,但我不确定如何。或者我应该将它添加到AuthenticationProperties任何想法?以下是我在示例应用中的登录导航

HttpContext.GetOwinContext().Authentication.Challenge(
    new AuthenticationProperties
    (
        new Dictionary<string, string> { { Startup.PolicyKey, Startup.SignInPolicyId } }
    )
    { RedirectUri = "/", },
    OpenIdConnectAuthenticationDefaults.AuthenticationType);

0 个答案:

没有答案