我正在創建一個網站(與其他網站)共享相同的Active Directory以驗證用戶(SSO)的網站。ZF2設置LDAP SSO
我已經管理到我的用戶進行身份驗證...
$auth = new \Zend\Authentication\AuthenticationService();
$options = array(
'server' => array(
'host' => $host,
'baseDn' => $dc
),
);
$adapter = new \Zend\Authentication\Adapter\Ldap($options, $username, $password);
$result = $auth->authenticate($adapter);
...但我只是不明白如何檢查,如果用戶(從網絡中的其他網站)已經auth'ed或者我需要保留會話(或標題?),以便其他站點知道用戶已經登錄。
謝謝!