You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
11 lines
276 B
Plaintext
Vendored
11 lines
276 B
Plaintext
Vendored
URL = "https://bin.openintegrations.dev";
|
|
URL = URL + "/get";
|
|
|
|
TFN = GetTempFileName();
|
|
|
|
Result = OPI_HTTPRequests.NewRequest()
|
|
.Initialize(URL)
|
|
.SetResponseFile(TFN) // <---
|
|
.ProcessRequest("GET")
|
|
.ReturnResponseFilename();
|