You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
13 lines
374 B
Plaintext
Vendored
13 lines
374 B
Plaintext
Vendored
URL = "http://localhost:2424";
|
|
URL = URL + "/get";
|
|
|
|
ProxySettings = New InternetProxy;
|
|
ProxySettings.Set("https", "proxy.com", 443, "user", "password", False);
|
|
|
|
Result = OPI_HTTPRequests.NewRequest()
|
|
.Initialize()
|
|
.SetURL(URL)
|
|
.SetProxy(ProxySettings) // <---
|
|
.ProcessRequest("GET", False)
|
|
.ReturnConnection();
|