You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-12-11 23:27:21 +02:00
16 lines
419 B
Plaintext
Vendored
16 lines
419 B
Plaintext
Vendored
URL = "https://bin.openintegrations.dev";
|
|
URL = URL + "/put";
|
|
|
|
ChunkSize = 524288;
|
|
Data = GetBinaryDataFromString("Some data for sending");
|
|
|
|
// Sending only "data for"
|
|
StartPosition = 5;
|
|
Bytes = 8;
|
|
|
|
Result = OPI_HTTPRequests.NewRequest()
|
|
.Initialize(URL)
|
|
.SetBinaryBody(Data)
|
|
.SendPart(StartPosition, Bytes) // <---
|
|
.ReturnResponseAsJSONObject();
|