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
Copy file name to clipboardExpand all lines: README.md
+7-31Lines changed: 7 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -433,10 +433,10 @@ By default, an API error will raise a models.SDKError exception, which has the f
433
433
434
434
When custom error responses are specified for an operation, the SDK may also raise their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `verify_async` method may raise the following exceptions:
You can override the default server globally by passing a server index to the `server_idx: int` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
@@ -598,9 +574,9 @@ s = Clerk(async_client=CustomClient(httpx.AsyncClient()))
598
574
599
575
This SDK supports the following security scheme globally:
600
576
601
-
| Name | Type | Scheme|
602
-
| ------------- | -------------|------------- |
603
-
|`bearer_auth`| http | HTTP Bearer|
577
+
| Name | Type | Scheme |
578
+
| ------------- | ---- | ----------- |
579
+
|`bearer_auth`| http | HTTP Bearer |
604
580
605
581
To authenticate with the API the `bearer_auth` parameter must be set when initializing the SDK client instance. For example:
0 commit comments