Create gif tweet
Creates a tweet with a gif attachment
Function CreateGifTweet(Val Text, Val GifsArray, Val Parameters = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Text | --text | String | ✔ | Tweet text |
GifsArray | --gifs | Array of String, BinaryData | ✔ | Gif 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);
GIF = "https://hut.openintegrations.dev/test_data/animation.gif"; // URL, Binary or File path
Gif2 = "https://hut.openintegrations.dev/test_data/animation.gif"; // URL, Binary or File path
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);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint twitter CreateGifTweet \
--text "TestTweet534a839e-ab76-4115-953a-3e503af70bd3" \
--gifs "C:\Users\bayse\AppData\Local\Temp\qmrr3blw.fye" \
--auth "{'redirect_uri':'https://hut.openintegrations.dev/melezh/6ad91cc8b','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 CreateGifTweet ^
--text "TestTweet534a839e-ab76-4115-953a-3e503af70bd3" ^
--gifs "C:\Users\bayse\AppData\Local\Temp\qmrr3blw.fye" ^
--auth "{'redirect_uri':'https://hut.openintegrations.dev/melezh/6ad91cc8b','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": [
"1976383767318008034"
],
"id": "1976383767318008034",
"text": "TestTweetfbdc1d3b-bb7b-4cc5-8f0f-f01555e24855 https://t.co/tVANoRnVYG"
}
}