You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.5.2/doc/client.md)
39
+
**_Note:_** Documentation for the client can be found [here.](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.6.0/doc/client.md)
40
40
41
41
The following parameters are configurable for the API Client:
42
42
@@ -51,13 +51,13 @@ The following parameters are configurable for the API Client:
51
51
|`backoff_factor`|`float`| A backoff factor to apply between attempts after the second try. <br> **Default: 2**|
52
52
|`retry_statuses`|`Array of int`| The http statuses on which retry is to be done. <br> **Default: [408, 413, 429, 500, 502, 503, 504, 521, 522, 524]**|
53
53
|`retry_methods`|`Array of string`| The http methods on which retry is to be done. <br> **Default: ['GET', 'PUT']**|
54
-
|`logging_configuration`|[`LoggingConfiguration`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.5.2/doc/logging-configuration.md)| The SDK logging configuration for API calls |
55
-
|`client_credentials_auth_credentials`|[`ClientCredentialsAuthCredentials`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.5.2/doc/auth/oauth-2-client-credentials-grant.md)| The credential object for OAuth 2 Client Credentials Grant |
54
+
|`logging_configuration`|[`LoggingConfiguration`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.6.0/doc/logging-configuration.md)| The SDK logging configuration for API calls |
55
+
|`client_credentials_auth_credentials`|[`ClientCredentialsAuthCredentials`](https://www.github.com/paypal/PayPal-Python-Server-SDK/tree/0.6.0/doc/auth/oauth-2-client-credentials-grant.md)| The credential object for OAuth 2 Client Credentials Grant |
Copy file name to clipboardExpand all lines: doc/auth/oauth-2-client-credentials-grant.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Documentation for accessing and setting credentials for Oauth2.
27
27
You must initialize the client with *OAuth 2.0 Client Credentials Grant* credentials as shown in the following code snippet. This will fetch the OAuth token automatically when any of the endpoints, requiring *OAuth 2.0 Client Credentials Grant* autentication, are called.
@@ -44,7 +44,7 @@ Your application can also manually provide an OAuthToken using the setter `o_aut
44
44
Whenever the OAuth Token gets updated, the provided callback implementation will be executed. For instance, you may use it to store your access token whenever it gets updated.
0 commit comments