Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.12 KB

README.md

File metadata and controls

49 lines (32 loc) · 1.12 KB

TestingTokens

(testingTokens())

Overview

Available Operations

  • create - Retrieve a new testing token

create

Retrieve a new testing token. Only available for development instances.

Example Usage

package hello.world;

import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.operations.CreateTestingTokenResponse;
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();

        CreateTestingTokenResponse res = sdk.testingTokens().create()
                .call();

        if (res.testingToken().isPresent()) {
            // handle response
        }
    }
}

Response

CreateTestingTokenResponse

Errors

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