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/SetURL.txt
Vitaly the Alpaca (bot) a363d0b158 Main build (Jenkins)
2025-04-20 22:31:56 +03:00

9 lines
225 B
Plaintext
Vendored

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