1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"http_method": "POST",
"url_path": "getUpdates",
"req_body": {
"json": {}
},
"rep_body": {
"ok": true,
"result": [
{
"update_id": 1,
"poll_answer": {
"poll_id": "poll-id-1",
"voter_chat": {
"id": 1,
"type": "group",
"title": "Test"
},
"option_ids": [
0
],
"option_persistent_ids": [
"option-id"
]
}
},
{
"update_id": 2,
"poll_answer": {
"poll_id": "poll-id-2",
"option_ids": [],
"option_persistent_ids": [],
"user": {
"id": 1,
"first_name": "John",
"is_bot": false
}
}
}
]
}
}