From c203bd353249ae690518195f163a0deae9e0fb12 Mon Sep 17 00:00:00 2001 From: hsluoyz Date: Sat, 13 Jan 2024 02:57:24 +0800 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1acabae..fb9840e 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,9 @@ Initialization requires 5 parameters, which are all str type: | endpoint | Yes | Casdoor Server Url, such as `http://localhost:8000` | | client_id | Yes | Application.client_id | | client_secret | Yes | Application.client_secret | -| certificate | Yes | Same as Casdoor certificate | +| certificate | Yes | Same as Casdoor certificate | | org_name | Yes | Organization name | +| application_name | Yes | Application name | ```python from casdoor import CasdoorSDK @@ -40,7 +41,7 @@ sdk = CasdoorSDK( client_secret, certificate, org_name, - application_name + application_name, ) ``` @@ -60,7 +61,7 @@ sdk = AsyncCasdoorSDK( client_secret, certificate, org_name, - application_name + application_name, ) ```