Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 1.49 KB

README.md

File metadata and controls

46 lines (28 loc) · 1.49 KB

Jwks

(jwks)

Overview

Available Operations

  • get - Retrieve the JSON Web Key Set of the instance

get

Retrieve the JSON Web Key Set of the instance

Example Usage

from clerk_backend_api import Clerk

with Clerk(
    bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as clerk:

    res = clerk.jwks.get()

    assert res is not None

    # Handle response
    print(res)

Parameters

Parameter Type Required Description
retries Optional[utils.RetryConfig] Configuration to override the default retry behavior of the client.

Response

models.WellKnownJWKS

Errors

Error Type Status Code Content Type
models.SDKError 4XX, 5XX */*