mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-27 21:48:56 +02:00
15 lines
520 B
Plaintext
15 lines
520 B
Plaintext
Parameters = GetTwitterAuthData();
|
|
Text = "TestTweet" + String(New UUID);
|
|
|
|
GIF = OPI_TestDataRetrieval.GetParameter("GIF"); // URL, Binary or Path to file
|
|
Gif2 = OPI_TestDataRetrieval.GetParameter("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);
|