1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-11 11:41:56 +02:00
OpenIntegrations/docs/en/md/Twitter/Tweets/Create-video-tweet.mdx
Vitaly the Alpaca (bot) 4fbf6a06f8 Main build (Jenkins)
2024-12-01 22:17:07 +03:00

87 lines
2.8 KiB
Plaintext

---
sidebar_position: 5
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
# 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
<br/>
:::tip
Parameters with Binary data type can also accept file paths on disk and URLs
:::
<br/>
```bsl title="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);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
# JSON data can also be passed as a path to a .json file
oint twitter CreateVideoTweet \
--text "TestTweet94207116-9503-46a7-9189-aa120429f6e9" \
--videos "C:\Users\Administrator\AppData\Local\Temp\gkfa00auhbk.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':'***'}"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
:: JSON data can also be passed as a path to a .json file
oint twitter CreateVideoTweet ^
--text "TestTweet94207116-9503-46a7-9189-aa120429f6e9" ^
--videos "C:\Users\Administrator\AppData\Local\Temp\gkfa00auhbk.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':'***'}"
```
</TabItem>
</Tabs>
```json title="Result"
{
"data": {
"edit_history_tweet_ids": [
"1843891542655709641"
],
"id": "1843891542655709641",
"text": "TestTweet9e678e5d-a3b4-4775-a584-75094c588bfa https://t.co/kYlj98ZsLS"
}
}
```