Skip to content

Latest commit

 

History

History
48 lines (29 loc) · 808 Bytes

README.md

File metadata and controls

48 lines (29 loc) · 808 Bytes

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

declare(strict_types=1);

require 'vendor/autoload.php';

use Clerk\Backend;

$sdk = Backend\ClerkBackend::builder()
    ->setSecurity(
        '<YOUR_BEARER_TOKEN_HERE>'
    )
    ->build();



$response = $sdk->jwks->get(

);

if ($response->wellKnownJWKS !== null) {
    // handle response
}

Response

?Operations\GetJWKSResponse

Errors

Error Type Status Code Content Type
Errors\SDKException 4XX, 5XX */*