diff --git a/README.md b/README.md index 2bdf8cf..df023f3 100644 --- a/README.md +++ b/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() diff --git a/docs/source/index.rst b/docs/source/index.rst index e0477f2..1ed48c1 100644 --- a/docs/source/index.rst +++ b/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()