【发布时间】:2016-02-23 09:46:46
【问题描述】:
我是 saml 新手,我需要使用 php 解码 saml 响应并在其中获取用户名,我该怎么做?这是我的索引页代码
`
require_once('/var/simplesamlphp/lib/_autoload.php');
$as = new SimpleSAML_Auth_Simple('default-sp');
$as->requireAuth();
$attributes = $as->getAttributes();
print_r($attributes);
if(array_key_exists('http://exm/claims/role', $attributes)) {
}
$exp_atr= explode(",", $attributes['http://exm/claims/role'][0]);
if (in_array("admin_group", $exp_atr)) {
header("location:index_admin.php");
}
else {
header("location:index_others.php");
}
?>`
【问题讨论】: