Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

4.20.0

Latest
Compare
Choose a tag to compare
@IngenicoEPayments IngenicoEPayments released this 27 Feb 12:14
· 1 commit to master since this release
  • 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 hostname
      • scheme: the proxy scheme; defaults to http if omitted
      • port: the proxy port; defaults to 3128 if omitted
      • credentials: 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]"
         }
       });