用户打开包含查询字符串参数的页面,之后他们需要登录Azure B2C。登录完成后,我希望返回查询字符串值,但无法确定如何执行此操作。目前最好的选择似乎是将其作为州数据包括在内,但我不确定如何。或者我应该将它添加到AuthenticationProperties
任何想法?以下是我在示例应用中的登录导航
HttpContext.GetOwinContext().Authentication.Challenge(
new AuthenticationProperties
(
new Dictionary<string, string> { { Startup.PolicyKey, Startup.SignInPolicyId } }
)
{ RedirectUri = "/", },
OpenIdConnectAuthenticationDefaults.AuthenticationType);