mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-03-29 21:57:16 +02:00
15 lines
562 B
Plaintext
Vendored
15 lines
562 B
Plaintext
Vendored
Parameters = GetTwitterAuthData();
|
|
Text = "TestTweet" + String(New UUID);
|
|
|
|
Video = "https://api.athenaeum.digital/test_data/video.mp4"; // URL, Binary or Path to file
|
|
Video2 = "https://api.athenaeum.digital/test_data/video.mp4"; // 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);
|