gpt4 book ai didi

azure - 在 Service Fabric 集群上发布应用程序后 HttpContext.Session 为空

转载 作者:行者123 更新时间:2023-12-04 23:40:35 25 4
gpt4 key购买 nike

应用程序使用 OAuth2 流 登录用户的 O365 帐户并将返回的访问 token 存储在 session 变量中。以下代码用于存储 token :

var authResult = await authContext.AcquireTokenByAuthorizationCodeAsync(
Request.Query["code"],
loginRedirectUri,
new ClientCredential(ConfigSettings.ClientId, ConfigSettings.ClientSecret),
ConfigSettings.O365UnifiedAPIResource);

var authResultEWS = await authContext.AcquireTokenByAuthorizationCodeAsync(
Request.Query["code"],
loginRedirectUri,
new ClientCredential(ConfigSettings.ClientId, ConfigSettings.ClientSecret),
ConfigSettings.EWSAPIResource);

HttpContext.Session.SetString(SessionKeys.Login.AccessToken, authResult.AccessToken);
HttpContext.Session.SetString(SessionKeys.Login.EWSAccessToken, authResultEWS.AccessToken);

以下是我们如何将 token 返回到 Controller 中:

private string GetSessionValue(string key)
{
byte[] buffer = new byte[2048];
HttpContext.Session.TryGetValue(key, out buffer);
return System.Text.Encoding.UTF8.GetString(buffer);
}

此解决方案适用于本地 5 节点集群,但在 Azure 3 节点集群上发布后, session 似乎不起作用。

我使用了远程调试,并且访问 token 已正确添加,但是一旦我调用 GetSessionValueHttpContext.Session 包含 0 个 key 。

如果使用 HttpContext.Session 对于像 SF 这样的分布式架构来说是一个坏主意,那么什么是一个好的替代解决方案?

最佳答案

默认情况下, session 数据的范围仅限于其运行的节点。为了获得高度可用(分布式)解决方案,您需要获取数据并将其复制到其他节点。

Service Fabric 可靠 Stateful ServicesActors内置了这样的机制。您可以使用其中之一来缓存您的( protected )访问 token 。 (也可以选择作为 O365 的网关)

关于azure - 在 Service Fabric 集群上发布应用程序后 HttpContext.Session 为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40076984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com