I have setup OpenAM and SimpleSAMLPhp. I can auth via the OpenAM "Test Fed" and the "Auth" page in SimpleSAMLPhp so i believe its all working correctly.
However, when i auth the user, and then print out:
$attributes = $as->getAttributes();
$attrs = print_r($attributes, true);
print '<pre>Attrs: ' . $attrs . '</pre>';
I get the following:
Attrs: Array
(
[groups] => Array
(
[0] => users
[1] => members
)
)
Where as i would expect the below:
inetuserstatus=[true],
sn=[Healy],
givenname=[Gareth],
userpassword=xxx...,
uid=[gareth.healy@localhost.com]
If i call the REST API http://auth.localhost.com:8080/openam/identity/attributes?subjectid=... it returns the values as expected.
I have included saml response as well. Is this a OpenAM/SimpleSAMLPhp setup issue?