我有一个Zend项目,用户通过数据库支持的登录页面登录。我使用simplesamlphp实现了IdP启动的SSO功能。
事件的当前流程是: -
我想要simplesaml做的是: -
但我无法找到任何方法。请帮忙。
答案 0 :(得分:0)
为了解决这个问题,我在使用
进行用户登录之前启动了simplesaml会话 SimpleSAML_Session::getInstance();
//This method makes the $_SESSION empty and stores the required session parameters it wants.
在此之后,我将用户的登录凭据存储在会话中。我不知道这是否是解决这个问题的最佳方法。