This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
- Added:
-
Added support for HTTP proxies. A proxy can be configured when initializing the SDK using new property
proxy
with the following nested properties:host
: the proxy hostnamescheme
: the proxy scheme; defaults tohttp
if omittedport
: the proxy port; defaults to 3128 if omittedcredentials
: the optional proxy credentials, in the format<username>:<password>
A minimal example:
connectSdk.init({ host: "[hostname.of.the.api]", apiKeyId: "[your-api-key-id]", secretApiKey: "[your-secret-api-key]", integrator: "[your-company-name]", proxy: { host: "[hostname.of.the.proxy]" } });
-