1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-10 04:18:47 +02:00
OpenIntegrations/docs/en/examples/Twitter/UploadAttachmentsArray.txt

11 lines
434 B
Plaintext
Raw Normal View History

2024-10-05 15:58:47 +02:00
 Parameters = GetTwitterAuthData();
2024-10-06 20:51:35 +02:00
Image1 = "https://openyellow.neocities.org/test_data/picture.jpg"; // URL, Binary Data or Path to file
Image2 = "https://openyellow.neocities.org/test_data/picture2.jpg"; // URL, Binary Data or Path to file
2024-10-05 15:58:47 +02:00
ImageArray = New Array();
ImageArray.Add(Image1);
ImageArray.Add(Image2);
2024-10-06 20:42:10 +02:00
Result = OPI_Twitter.UploadAttachmentsArray(ImageArray, "tweet_image", Parameters);