I am new to SimpleSamlPhp, I already setup a working environment, it is able to redirect to an URL @ metadata\saml20-sp-remote.php
Example:
$metadata['http://www.example.com'] = array(
'AssertionConsumerService' => 'http://www.example.com/acceptsaml.php',
'SingleLogoutService' => 'http://www.example.com/saml2-logout.php',
);
How to pass extra custom fields (I added new custom fields, example: EmployeeID, in auth_user table) as XML/Json after authentication redirect?
Thanks.