Create video tweet
Creates a tweet with a video attachment
Function CreateVideoTweet(Val Text, Val VideosArray, Val Parameters = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Text | --text | String | ✔ | Tweet text |
VideosArray | --videos | Array of String, BinaryData | ✔ | Video files array |
Parameters | --auth | Structure Of String | ✖ | Authorization 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 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);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint twitter CreateVideoTweet \
--text "TestTweet4c7ca6d4-dee7-4ed3-bc51-9f9d49b431a1" \
--videos "C:\Users\Administrator\AppData\Local\Temp\m0aql4um2xp.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':'***'}"
:: JSON data can also be passed as a path to a .json file
oint twitter CreateVideoTweet ^
--text "TestTweet4c7ca6d4-dee7-4ed3-bc51-9f9d49b431a1" ^
--videos "C:\Users\Administrator\AppData\Local\Temp\m0aql4um2xp.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"
}
}