From e3693bb979da50f730b4318fba1e709f6820fd76 Mon Sep 17 00:00:00 2001 From: Marcos Pereira Date: Mon, 23 Oct 2017 17:08:36 -0200 Subject: [PATCH] Updated example. --- README.md | 3 ++- docs/source/index.rst | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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()