client_id
Historically, we used the client_id
passed as a request parameter to identify and authenticate integrators. This system has been fully deprecated. If you’re currently using client_id
, you should transition to using an API key.(We’re making this transition because client_id
didn’t abide by best practices for security, and we could only attach limited functionality to it, since it was passed in the request body instead of a header.)authorization
HTTP header.
For example:
@skip-go/client
@skip-go/client
TypeScript package (v1.0.0+), you can configure your API key using either setApiOptions
or setClientOptions
at initialization. The library will automatically include it in the authorization
header of all requests.
For example:
SkipClient
class has been removed in v1.0.0. Instead, you import and use individual functions directly after setting the API options. Also note that apiURL
has been renamed to apiUrl
to follow camelCase conventions.