(jwks())
- get - Retrieve the JSON Web Key Set of the instance
Retrieve the JSON Web Key Set of the instance
package hello.world;
import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.operations.GetJWKSResponse;
import java.lang.Exception;
public class Application {
public static void main(String[] args) throws Exception {
Clerk sdk = Clerk.builder()
.bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
.build();
GetJWKSResponse res = sdk.jwks().get()
.call();
if (res.wellKnownJWKS().isPresent()) {
// handle response
}
}
}
Error Type | Status Code | Content Type |
---|---|---|
models/errors/SDKError | 4XX, 5XX | */* |