mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-02-03 13:22:19 +02:00
15 lines
514 B
Plaintext
15 lines
514 B
Plaintext
Parameters = GetTwitterAuthData();
|
|
Text = "TestTweet" + String(New UUID);
|
|
|
|
GIF = OPI_TestDataRetrieval.GetBinary("GIF"); // URL, Binary or Path to file
|
|
Gif2 = OPI_TestDataRetrieval.GetBinary("GIF"); // URL, Binary or Path to file
|
|
|
|
GifsArray = New Array;
|
|
GifsArray.Add(GIF);
|
|
GifsArray.Add(Gif2);
|
|
|
|
Result = OPI_Twitter.CreateGifTweet(Text, GifsArray, Parameters);
|
|
|
|
Text = "TestTweet" + String(New UUID);
|
|
Result = OPI_Twitter.CreateGifTweet(Text, GIF, Parameters);
|