You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [1.16.0] - 2026-01-15
9
+
10
+
- 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.
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,7 @@ To customize the SDK further, additional parameters can be passed to the `init()
91
91
|`setLogger`| Toggle log levels for more insights or for debugging purposes. You can also customize your own transport in order to have better control over log messages. | No | Object | See [Logger](#logger) section |
92
92
|`setIntegrations`| Callback function for integrating with third-party analytics services. | No | Function | See [Integrations](#integrations) section |
93
93
|`setIsAliasingEnabled`| Enable user aliasing functionality. Requires gateway service to be configured. | No | Boolean | see [UserAliasing](#UserAliasing) section |
94
+
|`setProxyUrl`| Custom proxy URL for redirecting all SDK network requests (settings, tracking, etc.) through your own proxy server. | No | String | see [Proxy](#proxy) section |
94
95
95
96
Refer to the [official VWO documentation](https://developers.vwo.com/v2/docs/fme-java-install) for additional parameter details.
96
97
@@ -206,6 +207,20 @@ vwoInitOptions.setPollInterval(60000); // Set the poll interval to 60 seconds
206
207
VWO vwoInstance =VWO.init(vwoInitOptions);
207
208
```
208
209
210
+
### Proxy
211
+
212
+
The `setProxyUrl` parameter allows you to redirect all SDK network calls through a custom proxy URL. This feature enables you to route all SDK network requests (settings, tracking, etc.) through your own proxy server, providing better control over network traffic and security.
The VWO FME Gateway Service is an optional but powerful component that enhances VWO's Feature Management and Experimentation (FME) SDKs. It acts as a critical intermediary for pre-segmentation capabilities based on user location and user agent (UA). By deploying this service within your infrastructure, you benefit from minimal latency and strengthened security for all FME operations.
0 commit comments