You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -794,6 +794,8 @@ Main class of OneLogin Python Toolkit
794
794
****build_response_signature*** Builds the Signature of the SAML Response.
795
795
****get_settings*** Returns the settings info.
796
796
****set_strict*** Set the strict mode active/disable.
797
+
****get_last_request_xml*** Returns the most recently-constructed/processed XML SAML request (AuthNRequest, LogoutRequest)
798
+
****get_last_response_xml*** Returns the most recently-constructed/processed XML SAML response (SAMLResponse, LogoutResponse). If the SAMLResponse was encrypted, by default tries to return the decrypted XML.
797
799
798
800
####OneLogin_Saml2_Auth - authn_request.py####
799
801
@@ -802,7 +804,7 @@ SAML 2 Authentication Request class
802
804
*`__init__` This class handles an AuthNRequest. It builds an AuthNRequest object.
803
805
****get_request*** Returns unsigned AuthnRequest.
804
806
****get_id*** Returns the AuthNRequest ID.
805
-
807
+
****get_xml*** Returns the XML that will be sent as part of the request.
806
808
807
809
####OneLogin_Saml2_Response - response.py####
808
810
@@ -821,6 +823,7 @@ SAML 2 Authentication Response class
821
823
****validate_num_assertions*** Verifies that the document only contains a single Assertion (encrypted or not)
822
824
****validate_timestamps*** Verifies that the document is valid according to Conditions Element
823
825
****get_error*** After execute a validation process, if fails this method returns the cause
826
+
****get_xml_document*** If necessary, decrypt the XML response document, and return it.
0 commit comments