mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-11-28 09:08:38 +02:00
17 lines
545 B
Plaintext
17 lines
545 B
Plaintext
Token = "001.3501506236.091...";
|
|
ChatID = "AoLI0egLWBSLR1Ngn2w";
|
|
Text = "File caption";
|
|
|
|
File = "https://openintegrations.dev/test_data/document.docx"; // URL
|
|
FilePath = GetTempFileName("docx"); // Path
|
|
|
|
CopyFile(File, FilePath);
|
|
|
|
FileBD = New BinaryData(FilePath); // Binary
|
|
|
|
Result = OPI_VKTeams.SendFile(Token, ChatID, File);
|
|
|
|
Result = OPI_VKTeams.SendFile(Token, ChatID, FilePath, Text);
|
|
|
|
Result = OPI_VKTeams.SendFile(Token, ChatID, FileBD, Text, "ImportantDocument.docx");
|