Create custom tweet
Creates a tweet with custom content
Function CreateCustomTweet(Val Text = "", Val MediaArray = "", Val PollOptionsArray = "", Val PollDuration = "", Val Parameters = "") Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Text | --text | String | ✖ | Tweet text |
| MediaArray | --media | Array of String, BinaryData | ✖ | Array of binary data or file paths |
| PollOptionsArray | --options | Array of String | ✖ | Array of poll options, if necessary |
| PollDuration | --dur | String, Number | ✖ | Poll duration if necessary (poll without duration is not created) |
| 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);
Image1 = "https://hut.openintegrations.dev/test_data/picture.jpg"; // URL, Binary Data or File path
Image2 = "https://hut.openintegrations.dev/test_data/picture2.jpg"; // URL, Binary Data or File path
ImageArray = New Array;
ImageArray.Add(Image1);
ImageArray.Add(Image2);
MediaArray = OPI_Twitter.UploadAttachmentsArray(ImageArray, "tweet_image", Parameters);
Result = OPI_Twitter.CreateCustomTweet(Text, MediaArray, , , Parameters);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint twitter CreateCustomTweet \
--text "TestTweet89a090cd-26b9-4658-9fcb-e78c076b5ff0" \
--media "['1975955359735963648','1975955369944850433']" \
--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 CreateCustomTweet ^
--text "TestTweet89a090cd-26b9-4658-9fcb-e78c076b5ff0" ^
--media "['1975955359735963648','1975955369944850433']" ^
--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": [
"1976383980791279947"
],
"id": "1976383980791279947",
"text": "TestTweet323bc75a-dae5-4cbe-aec9-45476be3a94e https://t.co/SQTcQSSV0Q"
}
}