1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-01 22:29:52 +02:00
Files
OpenIntegrations/docs/en/examples/Twitter/UploadAttachmentsArray.txt

11 lines
426 B
Plaintext
Raw Normal View History

2024-10-05 16:58:47 +03:00
 Parameters = GetTwitterAuthData();
2025-10-21 11:36:43 +03:00
Image1 = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Binary Data or File path
Image2 = "https://hut.openintegrations.dev/test_data/picture2.jpg"; // URL, Binary Data or File path
2024-10-05 16:58:47 +03:00
2025-03-06 20:58:59 +03:00
ImageArray = New Array;
2024-10-05 16:58:47 +03:00
ImageArray.Add(Image1);
ImageArray.Add(Image2);
2024-10-06 21:42:10 +03:00
Result = OPI_Twitter.UploadAttachmentsArray(ImageArray, "tweet_image", Parameters);