mrvanes / simplesamlphp-module-error
A module to generate SAML Error Responses in a controlled way.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:simplesamlphp-module
Requires
This package is auto-updated.
Last update: 2024-10-11 05:26:00 UTC
README
SimpleSAMLphp SAML ErrorResponse generator
This package can be used to generate SAML ErrorResponses in a controlled way. Useful when testing SP Error handling.
Configuration
'authproc' => array(
0 => array(
'class' => 'error:ErrorResponse',
'status' => SAML2\Constants::STATUS_RESPONDER,
'code' => 'FooCode',
'message' => 'Foo Message'
),
code
may not contain spaces. All spaces are removed.