mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-18 23:48:56 +02:00
50 lines
896 B
Markdown
50 lines
896 B
Markdown
---
|
|
sidebar_position: 1
|
|
---
|
|
|
|
# Create text tweet
|
|
Creates a tweet without attachments
|
|
|
|
|
|
*Function CreateTextTweet(Val Text, Val Parameters = "") ExportReturn CreateCustomTweet(Text,,,, Parameters);EndFunction*
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|-|-|-|-|
|
|
| Text | --text | String | Tweet text |
|
|
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
|
|
|
|
|
|
Returns: Key-Value Pair - serialized JSON response from Twitter
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
Response = OPI_Twitter.CreateTextTweet("Regular text tweet", Parameters);
|
|
Response = OPI_Tools.JSONString(Response);
|
|
|
|
|
|
|
|
```
|
|
|
|
```sh title="CLI command example"
|
|
|
|
oint twitter CreateTextTweet --text %text% --auth %auth%
|
|
|
|
|
|
```
|
|
|
|
|
|
```json title="Result"
|
|
|
|
{
|
|
"data": {
|
|
"text": "Regular text tweet",
|
|
"id": "1745752006310895822",
|
|
"edit_history_tweet_ids": [
|
|
"1745752006310895822"
|
|
]
|
|
}
|
|
}
|
|
|
|
```
|