From 89377b73ed7427de0b2452987f43e9d86d372e90 Mon Sep 17 00:00:00 2001 From: AsabuHere Date: Thu, 12 Dec 2024 15:44:56 +0530 Subject: [PATCH] Docs update and examples --- examples/organization_api.py | 2 -- examples/public_oauth.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/examples/organization_api.py b/examples/organization_api.py index 3619c2a10..feab6a24a 100644 --- a/examples/organization_api.py +++ b/examples/organization_api.py @@ -17,8 +17,6 @@ def example(): Some example usage of using organization resources """ self.client = Client( - username=API_KEY, - password=API_SECRET, account_sid=ACCOUNT_SID, credential_provider= OrgsCredentialProvider(CLIENT_ID,CLIENT_SECRET) ) diff --git a/examples/public_oauth.py b/examples/public_oauth.py index 10487d08a..41d6e4b64 100644 --- a/examples/public_oauth.py +++ b/examples/public_oauth.py @@ -18,8 +18,6 @@ def example(): Some example usage of message resources. """ self.client = Client( - username=API_KEY, - password=API_SECRET, account_sid=ACCOUNT_SID, credential_provider= ClientCredentialProvider(CLIENT_ID,CLIENT_SECRET) )