1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-15 11:56:36 +02:00
OpenIntegrations/docs/en/examples/Twitter/CreateCustomTweet.txt

13 lines
563 B
Plaintext
Raw Normal View History

2024-10-05 11:21:35 +03:00
 Parameters = GetTwitterAuthData();
Text = "TestTweet" + String(New UUID);
2024-10-15 10:07:27 +03:00
Image1 = "https://api.athenaeum.digital/test_data/picture.jpg"; // URL, Binary Data or Path to file
Image2 = "https://api.athenaeum.digital/test_data/picture2.jpg"; // URL, Binary Data or Path to file
2024-10-05 11:21:35 +03:00
ImageArray = New Array();
ImageArray.Add(Image1);
ImageArray.Add(Image2);
2024-10-13 01:21:47 +03:00
MediaArray = OPI_Twitter.UploadAttachmentsArray(ImageArray, "tweet_image", Parameters);
2024-10-05 14:42:31 +03:00
Result = OPI_Twitter.CreateCustomTweet(Text, MediaArray, , , Parameters);