mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
1.1 KiB
1.1 KiB
sidebar_position |
---|
2 |
Create image tweet
Creates a tweet with an image attachment
Function CreateImageTweet(Val Text, Val ImageArray, Val Parameters = "") Export
Parameter | CLI option | Type | Destination |
---|---|---|---|
Text | --text | String | Tweet text |
ImageArray | --pictures | Array of String, BinaryData | Image files array |
Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
Returns: Map Of KeyAndValue - serialized JSON response from Twitter
ImageArray = New Array;
ImageArray.Add("C:\logo.png");
ImageArray.Add("C:\logo_long.png");
Response = OPI_Twitter.CreateImageTweet("Alpaca", ImageArray, Parameters);
Response = OPI_Tools.JSONString(Response);
oint twitter CreateImageTweet --text %text% --pictures %pictures% --auth %auth%
{
"data": {
"text": "Alpaca https://t.co/OodoWT1AAA",
"id": "1745753004542726629",
"edit_history_tweet_ids": [
"1745753004542726629"
]
}
}