We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1211a8 commit dab5813Copy full SHA for dab5813
README.md
@@ -772,7 +772,7 @@ Notice that we saved the user data in the session before the redirection to have
772
In order to retrieve attributes we use:
773
774
```python
775
-attributes = auth.get_attributes();
+attributes = auth.get_attributes()
776
```
777
778
With this method we get a dict with all the user data provided by the IdP in the assertion of the SAML response.
@@ -793,7 +793,7 @@ Each attribute name can be used as a key to obtain the value. Every attribute is
793
The following code is equivalent:
794
795
796
797
print(attributes['cn'])
798
799
print(auth.get_attribute('cn'))
0 commit comments