Browse Source

Updated example.

hotfix/merge
Marcos Pereira 7 years ago
parent
commit
e3693bb979
  1. 3
      README.md
  2. 3
      docs/source/index.rst

3
README.md

@ -51,7 +51,8 @@ from keycloak import KeycloakOpenID
keycloak_openid = KeycloakOpenID(server_url="http://localhost:8080/auth/",
client_id="example_client",
realm_name="example_realm",
client_secret_key="secret")
client_secret_key="secret",
verify=True)
# Get WellKnow
config_well_know = keycloak_openid.well_know()

3
docs/source/index.rst

@ -79,7 +79,8 @@ Main methods::
keycloak_openid = KeycloakOpenID(server_url="http://localhost:8080/auth/",
client_id="example_client",
realm_name="example_realm",
client_secret_key="secret")
client_secret_key="secret",
verify=True)
# Get WellKnow
config_well_know = keycloak_openid.well_know()

Loading…
Cancel
Save