Cakephp在两个应用程序之间共享身份验证
有没有一种简单的方法可以在同一域上的两个 cakephp 应用程序之间共享登录信息?
基本上,MainApp 有一个完整的用户管理套件,我只想 secondaryApp 知道访问者是否登录。
Is there an easy way to share login information between two cakephp apps on the same domain?
Basically, MainApp has a full fledged user management suite, and I just want SecondaryApp to know if a visitor is logged in or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保两个应用程序都配置为以相同的方式处理会话。换句话说,我们希望两个应用程序都从同一个 cookie 中读取数据,并且需要两个应用程序在同一位置查找该 cookie。
在 MainApp 中,无论您在何处进行身份验证,都可以设置一个会话变量来指示用户已登录。
然后在 secondaryApp 中,您可以读取会话变量并采取相应的操作。我想通常您会要求用户登录。
Make sure both applications are configured to handle the session the same way. In other words, we want both apps to read from the same cookie and we need both apps to look in the same location for that cookie.
In your MainApp, wherever you do the Authentication, set a session variable indicating the user has logged in.
Then in SecondaryApp you can read the session variables and act accordingly. I suppose typically you would ask to user to login.