Skip to main content

Create video tweet

Creates a tweet with a video attachment

Function CreateVideoTweet(Val Text, Val VideosArray, Val Parameters = "") Export

ParameterCLI optionTypeRequiredDescription
Text--textStringTweet text
VideosArray--videosArray of String, BinaryDataVideo files array
Parameters--authStructure Of StringAuthorization data. See GetStandardParameters

Returns: Map Of KeyAndValue - serialized JSON response from Twitter


tip

Parameters with Binary data type can also accept file paths on disk and URLs


1C:Enterprise/OneScript code example
    Parameters = GetTwitterAuthData();
Text = "TestTweet" + String(New UUID);

Video = "https://api.athenaeum.digital/test_data/video.mp4"; // URL, Binary or File path
Video2 = "https://api.athenaeum.digital/test_data/video.mp4"; // URL, Binary or File path

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);
    # JSON data can also be passed as a path to a .json file

oint twitter CreateVideoTweet \
--text "TestTweet8fcf097f-0d05-4efc-9980-3a1802f07399" \
--videos "C:\Users\Administrator\AppData\Local\Temp\omexldywypm.tmp" \
--auth "{'redirect_uri':'https://api.athenaeum.digital/opi/hs/twitter','client_id':'***','client_secret':'***','access_token':'***','refresh_token':'***','oauth_token':'***','oauth_token_secret':'***','oauth_consumer_key':'***','oauth_consumer_secret':'***'}"
Result
{
"data": {
"edit_history_tweet_ids": [
"1843891542655709641"
],
"id": "1843891542655709641",
"text": "TestTweet9e678e5d-a3b4-4775-a584-75094c588bfa https://t.co/kYlj98ZsLS"
}
}