1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/examples/HTTPClient/SetTimeout.txt

10 lines
255 B
Plaintext
Raw Normal View History

2025-10-20 19:41:52 +03:00
 URL = FunctionParameters["HTTP_URL"];
2025-06-12 20:04:01 +03:00
URL = URL + "/get";
Result = OPI_HTTPRequests.NewRequest()
.Initialize()
.SetURL(URL)
.SetTimeout(60) // <---
.ProcessRequest("GET", False)
.ReturnConnection();