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