Skip to content

Version 1.17.0

Latest

Choose a tag to compare

@softvar softvar released this 08 Jan 11:57

Added

  • Added support for redirecting all network calls through a custom proxy URL. This feature allows users to route all SDK network requests (settings, tracking, etc.) through their own proxy server.
options = {
  'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key
  'account_id': '123456', # VWO Account ID
  'proxy_url': 'https://custom.proxy.com'
}

vwo_client = init(options)

Note: If both gateway_service and proxy_url are provided, the SDK will give preference to the gateway_service for all network requests.