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) )