如果禁用 cookie,OpenAM 还能工作吗?

发布于 2024-12-11 09:25:08 字数 253 浏览 0 评论 0原文

如果禁用 cookie,OpenAM 还能工作吗?

我有一个 Flex 应用程序,在某些浏览器(Chrome、Firefox)上,尝试上传文件时, Flash 播放器不会传递 OpenAM cookie。我需要找到另一种方法来做到这一点。禁用 cookie 时有什么方法可以使用 OpenAM 吗?

Will OpenAM work if cookies are disabled?

I have a Flex application and on some browsers (Chrome, Firefox), when a file upload is attempted, the flash player will not pass the OpenAM cookie. I need to find another way to do this. Is there any way to use OpenAM when cookies are disabled?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一枫情书 2024-12-18 09:25:08

默认情况下不会,但您可以修改 OpenAM 源代码来执行此操作。

来自OpenAM 邮件列表

如果你查看源代码
SSOProviderImpl#createSSOToken(HttpServletRequest) 看起来像那里
是尝试从请求中获取会话 ID 的方法
参数映射,所以恕我直言,你应该能够发布
cookiename=cookievalue 以及您的文件,或者将会话 ID 放在
查询字符串(但这将记录在容器访问中
日志...)

Not by default, but you may be able to modify the OpenAM source code to do so.

From the OpenAM mailing list:

if you check out the source code of
SSOProviderImpl#createSSOToken(HttpServletRequest) it looks like there
are methods trying to get the session id from the request
parametermap, so IMHO you should be able to post the
cookiename=cookievalue along with your file, or put the session ID on
the querystring (but that will be logged in the container access
logs...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文