Create poll tweet
Creates a tweet with a poll
Function CreatePollTweet(Val Text, Val OptionArray, Val Duration, Val Parameters = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Text | --text | String | ✔ | Tweet text |
OptionArray | --options | Array of String | ✔ | Poll options array |
Duration | --duration | String, Number | ✔ | Poll duration |
Parameters | --auth | Structure Of String | ✖ | Authorization data. See GetStandardParameters |
Returns: Map Of KeyAndValue - serialized JSON response from Twitter
1C:Enterprise/OneScript code example
Parameters = GetTwitterAuthData();
Text = "TestTweet" + String(New UUID);
AnswersArray = New Array;
AnswersArray.Add("Option 1");
AnswersArray.Add("Option 2");
Result = OPI_Twitter.CreatePollTweet(Text, AnswersArray, 60, Parameters);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint twitter CreatePollTweet \
--text "TestTweet91ea1b16-f3cc-487a-bf72-1f2543187702" \
--options "['Option 1','Option 2']" \
--duration 60 \
--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':'***'}"
:: JSON data can also be passed as a path to a .json file
oint twitter CreatePollTweet ^
--text "TestTweet91ea1b16-f3cc-487a-bf72-1f2543187702" ^
--options "['Option 1','Option 2']" ^
--duration 60 ^
--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':'***'}"
Result
{
"data": {
"text": "TestTweetc6891802-9272-4c6d-bbd7-71cbb02f0702",
"edit_history_tweet_ids": [
"1843892524672258331"
],
"id": "1843892524672258331"
}
}