10.15 SAML_CALLBACK Procedure
Landing resource for SAML authentication. To be called directly from the browser by the SAML identity provider.
Syntax
APEX_AUTHENTICATION.SAML_CALLBACK (
SAMLResponse IN VARCHAR2 DEFAULT NULL,
SAMLRequest IN VARCHAR2 DEFAULT NULL,
RelayState IN VARCHAR2 DEFAULT NULL,
SigAlg IN VARCHAR2 DEFAULT NULL,
Signature IN VARCHAR2 DEFAULT NULL )
Parameters
Parameter | Description |
---|---|
SAMLResponse |
The base64-encoded SAML response. For GET requests, Oracle APEX assumes that the data is also deflated. |
SAMLRequest |
Request from the IP to APEX (such as logout). Same format as SAMLRESPONSE. |
RelayState |
APEX session specific data. |
SigAlg |
Signature algorithm. |
Signature |
Signature value. |
Parent topic: APEX_AUTHENTICATION