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/Initialize.txt
Vitaly the Alpaca (bot) 21cb7a5a0d Main build (Jenkins)
2025-04-21 22:32:08 +03:00

9 lines
216 B
Plaintext
Vendored

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