mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-12 04:34:10 +02:00
18 lines
609 B
Plaintext
18 lines
609 B
Plaintext
Text = "Text of post";
|
|
Title = "Post title";
|
|
Image1 = FunctionParameters["Picture"]; // URL, Path or Binary Data
|
|
Image2 = FunctionParameters["Picture2"]; // URL, Path or Binary Data
|
|
|
|
Files = New Map;
|
|
Files.Insert("1.png", Image1);
|
|
Files.Insert("2.png", Image2);
|
|
|
|
URL = FunctionParameters["Bitrix24_URL"];
|
|
|
|
Result = OPI_Bitrix24.CreatePost(URL, Text, , Files, Title, True);
|
|
|
|
URL = FunctionParameters["Bitrix24_Domain"];
|
|
Token = FunctionParameters["Bitrix24_Token"];
|
|
|
|
Result = OPI_Bitrix24.CreatePost(URL, Text, , Files, Title, , Token);
|