如何使 Flex 身份验证持久化?
你好 我在服务器端使用 php,一旦我验证了 Flex 通道集,然后通过刷新页面重新加载应用程序,我再次需要通过登录并调用 cs.login(username,password); 来验证通道集。
我希望 Flex 应用程序在加载时检查用户是否已经通过身份验证。
提前致谢。
Hi
I am using php on server side, once I authenticate flex channel set and then reload the application by refreshing the page , I again need to authenticate channel set by login in and calling cs.login(username,password);
I want flex application to check when it loads weather user is already authenticated or not .
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用共享对象,即 cookie 的 Flash 版本。另外,如果您使用服务器端会话,重新加载页面不应重置将前端会话与后端会话联系起来的浏览器 cookie。因此,您始终可以 ping 服务器来查看用户是否在那里进行了身份验证。
You can use shared objects, the Flash version of a cookie. Also, if you're using server side sessions, reloading the page should not reset the browser cookie which ties your front end to the back end session. So, you could always ping the server to see if the user authenticated there.