1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-27 21:48:56 +02:00
OpenIntegrations/docs/en/md/Twitter/Tweets/Create-gif-tweet.mdx
Vitaly the Alpaca (bot) 6f4de0ca5a Main build (Jenkins)
2024-10-15 13:51:58 +03:00

63 lines
1.5 KiB
Plaintext

---
sidebar_position: 4
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# Create gif tweet
Creates a tweet with a gif attachment
`Function CreateGifTweet(Val Text, Val GifsArray, Val Parameters = "") Export`
| Parameter | CLI option | Type | 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
<br/>
:::tip
Parameters with Binary data type can also accept file paths on disk and URLs
:::
<br/>
```bsl title="Code example"
Parameters = GetTwitterAuthData();
Text = "TestTweet" + String(New UUID);
GIF = "https://api.athenaeum.digital/test_data/animation.gif"; // URL, Binary or Path to file
Gif2 = "https://api.athenaeum.digital/test_data/animation.gif"; // URL, Binary or Path to file
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);
```
```json title="Result"
{
"data": {
"text": "TestTweet27989425-2fb9-4d49-ac50-2b73dff7c69e https://t.co/m6q4Bzxea3",
"id": "1843892227023507612",
"edit_history_tweet_ids": [
"1843892227023507612"
]
}
}
```