1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00
Files
OpenIntegrations/docs/en/examples/HTTPClient/SetResponseFile.txt
Vitaly the Alpaca (bot) f770866203 Main build (Jenkins)
2025-10-05 19:19:32 +03:00

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();