sgomez / simplesamlphp-module-openidsir
A SimpleSAMLphp filter for SIR OpenID attributes.
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:simplesamlphp-module
Requires
This package is auto-updated.
Last update: 2024-10-27 18:45:35 UTC
README
This package adds a filter for SIR OpenID attributes through a SimpleSAMLphp module installable through Composer. Installation can be as easy as executing:
composer.phar require sgomez/simplesamlphp-module-openidsir ~1.0@dev
How to use
Add this to your IdP definition:
'authproc' => array(
10 => 'openidsir:OpenID',
),
If your SIR OpenID is:
http://yo.rediris.es/soy/usuario@institucion.org/
You will receive this attributes:
"mail" => [
0 => "usuario@institucion.org"
],
"uid" => [
0 => "usuario"
],
"sHO" => [
0 => "institucion.org"
]