1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-04 20:54:02 +02:00
Files
OpenIntegrations/docs/en/examples/HTTP/SetResponseFile.txt
T

10 lines
272 B
Plaintext
Raw Normal View History

URL = "https://bin.openintegrations.dev";
2025-04-22 21:18:27 +03:00
URL = URL + "/get";
TFN = GetTempFileName();
Result = OPI_HTTPRequests.NewRequest()
.Initialize(URL)
.SetResponseFile(TFN) // <---
.ProcessRequest("GET")
.ReturnResponseFilename();