Skip to main content

Create poll tweet

Creates a tweet with a poll

Function CreatePollTweet(Val Text, Val OptionArray, Val Duration, Val Parameters = "") Export

ParameterCLI optionTypeDescription
Text--textStringTweet text
OptionArray--optionsArray of StringPoll options array
Duration--durationString, NumberPoll duration
Parameters--authStructure Of StringAuthorization JSON or path to .json

Returns: Map Of KeyAndValue - serialized JSON response from Twitter


Code example
  
OptionArray = New Array;
OptionArray.Add("Good");
OptionArray.Add("Nothing special");
OptionArray.Add("Bad");

Response = OPI_Twitter.CreatePollTweet("How are you?", OptionArray, 60, Parameters);
Response = OPI_Tools.JSONString(Response);
CLI command example
    
oint twitter CreatePollTweet --text %text% --options %options% --duration %duration% --auth %auth%

Result
{
"data": {
"text": "How are you?",
"id": "1746082302268969388",
"edit_history_tweet_ids": [
"1746082302268969388"
]
}
}