mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-26 05:37:27 +02:00
14 lines
496 B
Plaintext
14 lines
496 B
Plaintext
Parameters = GetTwitterAuthData();
|
|
Text = "TestTweet" + String(New UUID);
|
|
|
|
Image = OPI_TestDataRetrieval.GetBinary("Picture"); // URL, Binary or Path to file
|
|
Image2 = OPI_TestDataRetrieval.GetBinary("Picture2"); // URL, Binary or Path to file
|
|
|
|
ImageArray = New Array;
|
|
ImageArray.Add(Image);
|
|
ImageArray.Add(Image2);
|
|
|
|
Result = OPI_Twitter.CreateImageTweet(Text, ImageArray, Parameters);
|
|
|
|
Result = OPI_Twitter.CreateImageTweet(Text, Image, Parameters);
|