1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-05-06 23:00:33 +03:00
parent c917d47a1a
commit 515a31dd45
80 changed files with 8219 additions and 7756 deletions

View File

@@ -0,0 +1,11 @@
 URL = "https://httpbin.org";
URL = URL + "/post";
Image = "https://api.athenaeum.digital/test_data/picture.jpg"; // URL, Path or Binary Data
Result = OPI_HTTPRequests.NewRequest()
.Initialize(URL)
.SetBinaryBody(Image)
.UseGzipCompression(True) // <---
.ProcessRequest("POST", False)
.ReturnRequest();