2024-10-15 10:50:56 +03:00
|
|
|
---
|
2024-10-15 10:16:04 +03:00
|
|
|
sidebar_position: 10
|
|
|
|
|
---
|
|
|
|
|
|
2024-10-15 10:50:56 +03:00
|
|
|
import Tabs from '@theme/Tabs';
|
|
|
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
|
|
2024-10-15 10:16:04 +03:00
|
|
|
# Send poll
|
|
|
|
|
Sends a poll with answer options
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
`Function SendPoll(Val Token, Val ChatID, Val Question, Val AnswersArray, Val Anonymous = True) Export`
|
|
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Description |
|
|
|
|
|
|-|-|-|-|
|
|
|
|
|
| Token | --token | String | Bot token |
|
|
|
|
|
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
|
|
|
|
|
| Question | --question | String | Poll question |
|
|
|
|
|
| AnswersArray | --options | Array of String | Array of answer options |
|
|
|
|
|
| Anonymous | --anonymous | Boolean | Survey anonymity flag |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Telegram
|
|
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
:::tip
|
|
|
|
|
Method at API documentation: [sendPoll](https://core.telegram.org/bots/api#sendpoll)
|
|
|
|
|
:::
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
Token = "6129457865:AAFyzNYOAFbu...";
|
|
|
|
|
ChatID = "461699897";
|
|
|
|
|
ChannelID = "@testsichee";
|
|
|
|
|
Question = "What's your favorite color?";
|
|
|
|
|
|
|
|
|
|
AnswersArray = New Array;
|
|
|
|
|
AnswersArray.Add("Red");
|
|
|
|
|
AnswersArray.Add("Yellow");
|
|
|
|
|
AnswersArray.Add("Green");
|
|
|
|
|
AnswersArray.Add("Blue");
|
|
|
|
|
|
|
|
|
|
Result = OPI_Telegram.SendPoll(Token, ChatID , Question, AnswersArray, False);
|
|
|
|
|
|
|
|
|
|
Result = OPI_Telegram.SendPoll(Token, ChannelID, Question, AnswersArray, True);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
|
{
|
|
|
|
|
"ok": true,
|
|
|
|
|
"result": {
|
|
|
|
|
"message_id": 8314,
|
|
|
|
|
"from": {
|
|
|
|
|
"id": 6129457865,
|
|
|
|
|
"is_bot": true,
|
|
|
|
|
"first_name": "Бот Виталий",
|
|
|
|
|
"username": "sicheebot"
|
|
|
|
|
},
|
|
|
|
|
"chat": {
|
|
|
|
|
"id": 461699897,
|
|
|
|
|
"first_name": "Anton",
|
|
|
|
|
"last_name": "Titowets",
|
|
|
|
|
"username": "JKIee",
|
|
|
|
|
"type": "private"
|
|
|
|
|
},
|
|
|
|
|
"date": 1728453463,
|
|
|
|
|
"poll": {
|
|
|
|
|
"id": "5204130358378891890",
|
|
|
|
|
"question": "What's your favorite color?",
|
|
|
|
|
"options": [
|
|
|
|
|
{
|
|
|
|
|
"text": "Red",
|
|
|
|
|
"voter_count": 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"text": "Yellow",
|
|
|
|
|
"voter_count": 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"text": "Green",
|
|
|
|
|
"voter_count": 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"text": "Blue",
|
|
|
|
|
"voter_count": 0
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"total_voter_count": 0,
|
|
|
|
|
"is_closed": false,
|
|
|
|
|
"is_anonymous": false,
|
|
|
|
|
"type": "regular",
|
|
|
|
|
"allows_multiple_answers": false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
```
|