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
You can declare the settings_data in the file that constains the constructor execution or locate them in any file and load the file in order to get the dict available as we see in the following example:
429
+
You can declare the settings_data in the file that contains the constructor execution or locate them in any file and load the file in order to get the dict available as we see in the following example:
430
430
431
431
```python
432
432
filename ="/var/www/django-project/custom_settings.json"# The custom_settings.json contains a
@@ -526,7 +526,7 @@ The login method can recieve 3 more optional parameters:
526
526
#### The SP Endpoints ####
527
527
528
528
Related to the SP there are 3 important endpoints: The metadata view, the ACS view and the SLS view.
529
-
The toolkit provides examples of those views in the demos, but lets see an example.
529
+
The toolkit provides examples of those views in the demos, but let's see an example.
530
530
531
531
***SP Metadata***
532
532
@@ -583,7 +583,7 @@ The SAML response is processed and then checked that there are no errors. It als
583
583
At that point there are 2 possible alternatives:
584
584
585
585
* If no RelayState is provided, we could show the user data in this view or however we wanted.
586
-
* If RelayState is provided, a rediretion take place.
586
+
* If RelayState is provided, a redirection takes place.
587
587
588
588
Notice that we saved the user data in the session before the redirection to have the user data available at the RelayState view.
589
589
@@ -878,7 +878,7 @@ A class that contains functionality related to the metadata of the SP
878
878
879
879
****builder*** Generates the metadata of the SP based on the settings.
880
880
****sign_metadata*** Signs the metadata with the key/cert provided.
881
-
****add_x509_key_descriptors*** Adds the x509 descriptors (sign/encriptation) to the metadata
881
+
****add_x509_key_descriptors*** Adds the x509 descriptors (sign/encryption) to the metadata
882
882
883
883
####OneLogin_Saml2_Utils - utils.py####
884
884
@@ -945,8 +945,8 @@ how it deployed. New demos using other python frameworks are welcome as a contri
945
945
946
946
### Getting Started ###
947
947
948
-
We said that this toolkit includes a django application demo and a flask applicacion demo,
949
-
lets see how fast is deploy them.
948
+
We said that this toolkit includes a django application demo and a flask application demo,
949
+
let's see how fast is it to deploy them.
950
950
951
951
***Virtualenv***
952
952
@@ -1037,7 +1037,7 @@ Once the SP is configured, the metadata of the SP is published at the /metadata
1037
1037
1038
1038
5.2 SLO Initiated by IdP. In this case, the action takes place on the IdP side, the logout process is initiated at the IdP, sends a Logout Request to the SP (SLS endpoint, /?sls). The SLS endpoint of the SP process the Logout Request and if is valid, close the session of the user at the local app and send a Logout Response to the IdP (to the SLS endpoint of the IdP). The IdP receives the Logout Response, process it and close the session at of the IdP. Notice that the SLO Workflow starts and ends at the IdP.
1039
1039
1040
-
Notice that all the SAML Requests and Responses are handled at a unique view (index) and how GET paramters are used to know the action that must be done.
1040
+
Notice that all the SAML Requests and Responses are handled at a unique view (index) and how GET parameters are used to know the action that must be done.
0 commit comments