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) 0fe1cf5bbd Main build (Jenkins)
2025-04-22 21:18:27 +03:00

11 lines
263 B
Plaintext
Vendored

URL = "https://httpbin.org";
URL = URL + "/get";
TFN = GetTempFileName();
Result = OPI_HTTPRequests.NewRequest()
.Initialize(URL)
.SetResponseFile(TFN) // <---
.ProcessRequest("GET")
.ReturnResponseFilename();