mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-01-02 03:38:55 +02:00
Мелкие правки перевода
This commit is contained in:
parent
4f1ed01977
commit
d5ea3e6703
@ -30,7 +30,7 @@ sidebar_position: 1
|
||||
|
||||
```sh title="CLI command example"
|
||||
|
||||
oint vk CreateDiscussion --title %title% --text %text% --auth "GetVKParameters()"
|
||||
oint vk CreateDiscussion --title %title% --text %text% --auth %auth%
|
||||
|
||||
|
||||
```
|
||||
|
@ -30,7 +30,7 @@ sidebar_position: 5
|
||||
|
||||
```sh title="CLI command example"
|
||||
|
||||
oint vk CreateAlbum --title %title% --description %description% --auth "GetVKParameters()"
|
||||
oint vk CreateAlbum --title %title% --description %description% --auth %auth%
|
||||
|
||||
|
||||
```
|
||||
|
@ -28,10 +28,10 @@ sidebar_position: 2
|
||||
Image = "https://openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
|
||||
Video = "https://openintegrations.dev/test_data/video.mp4"; // URL, Path or Binary Data
|
||||
|
||||
AndVF = GetTempFileName("png");
|
||||
CopyFile(Image, AndVF);
|
||||
TFN = GetTempFileName("png");
|
||||
CopyFile(Image, TFN);
|
||||
|
||||
ImageUpload = OPI_VK.UploadPhotoToServer(AndVF, Parameters)["response"][0];
|
||||
ImageUpload = OPI_VK.UploadPhotoToServer(TFN, Parameters)["response"][0];
|
||||
VideoUpload = OPI_VK.UploadVideoToServer(Video, "NewVideo",,, Parameters);
|
||||
|
||||
ImageOwner = OPI_Tools.NumberToString(ImageUpload["owner_id"]);
|
||||
|
@ -35,7 +35,7 @@ sidebar_position: 4
|
||||
|
||||
```sh title="CLI command example"
|
||||
|
||||
oint vk CreatePoll --question "What's your favorite color?" --options %options% --picture %picture% --auth "GetVKParameters()"
|
||||
oint vk CreatePoll --question "What's your favorite color?" --options "['Red','Yellow','Green']" --picture %picture% --auth %auth%
|
||||
|
||||
|
||||
```
|
||||
|
@ -28,12 +28,12 @@ sidebar_position: 1
|
||||
Image = "https://openintegrations.dev/test_data/picture.jpg"; // URL, Path or Binary Data
|
||||
Image2 = "https://openintegrations.dev/test_data/picture2.jpg"; // URL, Path or Binary Data
|
||||
|
||||
AndVF = GetTempFileName("png");
|
||||
CopyFile(Image2, AndVF);
|
||||
TFN = GetTempFileName("png");
|
||||
CopyFile(Image2, TFN);
|
||||
|
||||
ImageArray = New Array;
|
||||
ImageArray.Add(Image);
|
||||
ImageArray.Add(AndVF);
|
||||
ImageArray.Add(TFN);
|
||||
|
||||
Result = OPI_VK.CreatePost(Text, ImageArray, True, URL, Parameters);
|
||||
Result = OPI_VK.CreatePost(Text, Image, False,, Parameters);
|
||||
|
@ -23,12 +23,12 @@ sidebar_position: 7
|
||||
URL = "https://github.com/Bayselonarrend/OpenIntegrations";
|
||||
|
||||
Image = "https://openintegrations.dev/test_data/picture.jpg"; // URL, Path to file or Binary Data
|
||||
AndVF = GetTempFileName("png");
|
||||
CopyFile(Image, AndVF);
|
||||
Image = New BinaryData(AndVF);
|
||||
TFN = GetTempFileName("png");
|
||||
CopyFile(Image, TFN);
|
||||
Image = New BinaryData(TFN);
|
||||
|
||||
Result = OPI_VK.CreateStory(Image, URL, Parameters);
|
||||
Result = OPI_VK.CreateStory(AndVF,, Parameters);
|
||||
Result = OPI_VK.CreateStory(TFN,, Parameters);
|
||||
|
||||
|
||||
```
|
||||
|
@ -25,13 +25,13 @@ sidebar_position: 8
|
||||
AlbumID = "304549394";
|
||||
|
||||
Image = "https://openintegrations.dev/test_data/picture.jpg"; // URL, Path to file or Binary Data
|
||||
AndVF = GetTempFileName("png");
|
||||
CopyFile(Image, AndVF);
|
||||
TFN = GetTempFileName("png");
|
||||
CopyFile(Image, TFN);
|
||||
|
||||
Image = New BinaryData(AndVF);
|
||||
Image = New BinaryData(TFN);
|
||||
|
||||
Result = OPI_VK.SaveImageToAlbum(AlbumID, Image, ImageDescription, Parameters);
|
||||
Result = OPI_VK.SaveImageToAlbum(AlbumID, AndVF, ImageDescription, Parameters);
|
||||
Result = OPI_VK.SaveImageToAlbum(AlbumID, TFN, ImageDescription, Parameters);
|
||||
|
||||
|
||||
```
|
||||
|
@ -2,7 +2,7 @@
|
||||
sidebar_position: 6
|
||||
---
|
||||
|
||||
# SendLink
|
||||
# Send link
|
||||
Sends a URL with a preview to a chat or channel
|
||||
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
sidebar_position: 5
|
||||
---
|
||||
|
||||
# SendLocation
|
||||
# Send location
|
||||
Sends geographic coordinates to a chat or channel
|
||||
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1,18 +0,0 @@
|
||||
[
|
||||
{
|
||||
"member": {
|
||||
".tag": "email",
|
||||
"email": "h5bk6ft62s@privaterelay.appleid.com"
|
||||
},
|
||||
"result": {
|
||||
".tag": "success",
|
||||
"success": {
|
||||
".tag": "editor"
|
||||
}
|
||||
},
|
||||
"sckey_sha1": "ee2d8fd2cee052e103a52aa74be85bbebb8e6bb4",
|
||||
"invitation_signature": [
|
||||
"ee2d8fd2cee052e103a52aa74be85bbebb8e6bb4:ed7721b375882c806612d4056dad9f317cc98a22"
|
||||
]
|
||||
}
|
||||
]
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
".tag": "complete"
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
".tag": "file",
|
||||
"name": "pic_copy.png",
|
||||
"path_lower": "/new/pic_copy.png",
|
||||
"path_display": "/New/pic_copy.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADEw",
|
||||
"client_modified": "2024-06-05T13:30:13Z",
|
||||
"server_modified": "2024-06-05T13:31:02Z",
|
||||
"rev": "61a2493decc9abd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
"name": "New catalog",
|
||||
"path_lower": "/new catalog",
|
||||
"path_display": "/New catalog",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADFQ"
|
||||
}
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
".tag": "file",
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADEQ",
|
||||
"client_modified": "2024-06-05T13:30:13Z",
|
||||
"server_modified": "2024-06-05T13:30:56Z",
|
||||
"rev": "61a24938235a3bd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
}
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1 +0,0 @@
|
||||
NOT JSON: FF D8 FF E1 54 C1 45 78 69 66 00 00 49 49 2A 00 08 00 00 00 0B 00 0E 01 02 00 20 00 00 00 92 00 00 00 0F 01 02 00 05 00 00 00 B2 00 00 00 10 01 02 00 07 00 00 00 B8 00 00 00 12 01 03 00 01 00…
|
@ -1 +0,0 @@
|
||||
NOT JSON: 50 4B 03 04 14 00 00 08 00 00 68 54 C5 58 00 00 00 00 00 00 00 00 00 00 00 00 04 00 09 00 4E 65 77 2F 55 54 05 00 01 64 3F 60 66 50 4B 03 04 14 00 08 08 00 00 4F 87 AF 58 00 00 00 00 00 00 00…
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
".tag": "file",
|
||||
"name": "pic.png",
|
||||
"path_lower": "/pic.png",
|
||||
"path_display": "/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADEQ",
|
||||
"client_modified": "2024-06-05T13:30:13Z",
|
||||
"server_modified": "2024-06-05T13:30:54Z",
|
||||
"rev": "61a24936ae65ebd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
".tag": "file",
|
||||
"name": "pic.png",
|
||||
"path_lower": "/pic.png",
|
||||
"path_display": "/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9A",
|
||||
"client_modified": "2024-06-05T10:31:56Z",
|
||||
"server_modified": "2024-06-05T10:32:32Z",
|
||||
"rev": "61a2215868cc3bd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
{
|
||||
"account_id": "dbid:AAA4WKMCfgoW5LwuNQFeLOyp-X4omQiNDhE",
|
||||
"name": {
|
||||
"given_name": "Антон",
|
||||
"surname": "Титовец",
|
||||
"familiar_name": "Антон",
|
||||
"display_name": "Антон Титовец",
|
||||
"abbreviated_name": "АТ"
|
||||
},
|
||||
"email": "bayselonarrend@gmail.com",
|
||||
"email_verified": true,
|
||||
"disabled": false,
|
||||
"country": "BY",
|
||||
"locale": "en",
|
||||
"referral_link": "https://www.dropbox.com/referrals/AADQceVD6l02CM1dzgLM7s_o8gdaPXKc7oM?src=app9-2724483",
|
||||
"is_paired": false,
|
||||
"account_type": {
|
||||
".tag": "basic"
|
||||
},
|
||||
"root_info": {
|
||||
".tag": "user",
|
||||
"root_namespace_id": "3179550035",
|
||||
"home_namespace_id": "3179550035"
|
||||
}
|
||||
}
|
@ -1 +0,0 @@
|
||||
"https://www.dropbox.com/oauth2/authorize?client_id=oynqxdsqft8oyky&response_type=code&token_access_type=offline"
|
@ -1,13 +0,0 @@
|
||||
{
|
||||
".tag": "file",
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADEQ",
|
||||
"client_modified": "2024-06-05T13:30:13Z",
|
||||
"server_modified": "2024-06-05T13:30:13Z",
|
||||
"rev": "61a2490f9d75bbd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
{
|
||||
"is_deleted": false,
|
||||
"entries": [
|
||||
{
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADEQ",
|
||||
"client_modified": "2024-06-05T13:30:13Z",
|
||||
"server_modified": "2024-06-05T13:30:13Z",
|
||||
"rev": "61a2490f9d75bbd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
]
|
||||
}
|
@ -1 +0,0 @@
|
||||
NOT JSON: 25 50 44 46 2D 31 2E 35 0D 0A 25 B5 B5 B5 B5 0D 0A 31 20 30 20 6F 62 6A 0D 0A 3C 3C 2F 54 79 70 65 2F 43 61 74 61 6C 6F 67 2F 50 61 67 65 73 20 32 20 30 20 52 2F 4C 61 6E 67 28 65 6E 2D 55 53…
|
@ -1,7 +0,0 @@
|
||||
{
|
||||
"used": 1477493597,
|
||||
"allocation": {
|
||||
".tag": "individual",
|
||||
"allocated": 2147483648
|
||||
}
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
{
|
||||
"paths_to_tags": [
|
||||
{
|
||||
"path": "/New/Dogs.mp3",
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"path": "/New/mydoc.docx",
|
||||
"tags": [
|
||||
{
|
||||
".tag": "user_generated_tag",
|
||||
"tag_text": "important"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
{
|
||||
".tag": "complete",
|
||||
"name": "url_doc.docx",
|
||||
"path_lower": "/new/url_doc.docx",
|
||||
"path_display": "/New/url_doc.docx",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADFA",
|
||||
"client_modified": "2024-06-05T13:31:15Z",
|
||||
"server_modified": "2024-06-05T13:31:16Z",
|
||||
"rev": "61a2494b1d8e3bd841553",
|
||||
"size": 24069,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
{
|
||||
".tag": "complete",
|
||||
"access_type": {
|
||||
".tag": "owner"
|
||||
},
|
||||
"is_inside_team_folder": false,
|
||||
"is_team_folder": false,
|
||||
"path_display": "/New",
|
||||
"path_lower": "/new",
|
||||
"name": "New",
|
||||
"policy": {
|
||||
"acl_update_policy": {
|
||||
".tag": "editors"
|
||||
},
|
||||
"shared_link_policy": {
|
||||
".tag": "anyone"
|
||||
},
|
||||
"viewer_info_policy": {
|
||||
".tag": "enabled"
|
||||
}
|
||||
},
|
||||
"preview_url": "https://www.dropbox.com/scl/fo/95xfntym1xeulqwxw49sj/h?dl=0",
|
||||
"shared_folder_id": "5038609761",
|
||||
"time_invited": "2024-06-05T13:33:40Z",
|
||||
"access_inheritance": {
|
||||
".tag": "inherit"
|
||||
},
|
||||
"folder_id": "id:kJU6-a-pT48AAAAAAAADEA"
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
{
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADEQ",
|
||||
"client_modified": "2024-06-05T13:30:13Z",
|
||||
"server_modified": "2024-06-05T13:30:13Z",
|
||||
"rev": "61a2490f9d75bbd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
{
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAADEQ",
|
||||
"client_modified": "2024-06-05T13:30:13Z",
|
||||
"server_modified": "2024-06-05T13:30:13Z",
|
||||
"rev": "61a2490f9d75bbd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
".tag": "async_job_id",
|
||||
"async_job_id": "vab7CKwG2RQAAAAAAAAAAQ"
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
{
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9A",
|
||||
"client_modified": "2024-06-05T10:31:56Z",
|
||||
"server_modified": "2024-06-05T10:31:56Z",
|
||||
"rev": "61a221362eab5bd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
[
|
||||
{
|
||||
"member": {
|
||||
".tag": "email",
|
||||
"email": "h5bk6ft62s@privaterelay.appleid.com"
|
||||
},
|
||||
"result": {
|
||||
".tag": "success",
|
||||
"success": {
|
||||
".tag": "editor"
|
||||
}
|
||||
},
|
||||
"sckey_sha1": "ee2d8fd2cee052e103a52aa74be85bbebb8e6bb4",
|
||||
"invitation_signature": [
|
||||
"ee2d8fd2cee052e103a52aa74be85bbebb8e6bb4:ed7721b375882c806612d4056dad9f317cc98a22"
|
||||
]
|
||||
}
|
||||
]
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1,12 +0,0 @@
|
||||
{
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9A",
|
||||
"client_modified": "2024-06-05T10:31:56Z",
|
||||
"server_modified": "2024-06-05T10:31:56Z",
|
||||
"rev": "61a221362eab5bd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
".tag": "async_job_id",
|
||||
"async_job_id": "RHx7-p_kP8AAAAAAAAAAAQ"
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
".tag": "file",
|
||||
"name": "pic_copy.png",
|
||||
"path_lower": "/new/pic_copy.png",
|
||||
"path_display": "/New/pic_copy.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9g",
|
||||
"client_modified": "2024-06-05T10:31:56Z",
|
||||
"server_modified": "2024-06-05T10:32:40Z",
|
||||
"rev": "61a2215fc32abbd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
{
|
||||
".tag": "complete",
|
||||
"access_type": {
|
||||
".tag": "owner"
|
||||
},
|
||||
"is_inside_team_folder": false,
|
||||
"is_team_folder": false,
|
||||
"path_display": "/New",
|
||||
"path_lower": "/new",
|
||||
"name": "New",
|
||||
"policy": {
|
||||
"acl_update_policy": {
|
||||
".tag": "editors"
|
||||
},
|
||||
"shared_link_policy": {
|
||||
".tag": "anyone"
|
||||
},
|
||||
"viewer_info_policy": {
|
||||
".tag": "enabled"
|
||||
}
|
||||
},
|
||||
"preview_url": "https://www.dropbox.com/scl/fo/mnrzfrjaub4vpcoz7cf74/h?dl=0",
|
||||
"shared_folder_id": "5037750065",
|
||||
"time_invited": "2024-06-05T10:35:17Z",
|
||||
"access_inheritance": {
|
||||
".tag": "inherit"
|
||||
},
|
||||
"folder_id": "id:kJU6-a-pT48AAAAAAAAC3g"
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
{
|
||||
".tag": "complete"
|
||||
}
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1,7 +0,0 @@
|
||||
{
|
||||
"used": 1477493597,
|
||||
"allocation": {
|
||||
".tag": "individual",
|
||||
"allocated": 2147483648
|
||||
}
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
{
|
||||
"account_id": "dbid:AAA4WKMCfgoW5LwuNQFeLOyp-X4omQiNDhE",
|
||||
"name": {
|
||||
"given_name": "Антон",
|
||||
"surname": "Титовец",
|
||||
"familiar_name": "Антон",
|
||||
"display_name": "Антон Титовец",
|
||||
"abbreviated_name": "АТ"
|
||||
},
|
||||
"email": "bayselonarrend@gmail.com",
|
||||
"email_verified": true,
|
||||
"disabled": false,
|
||||
"country": "BY",
|
||||
"locale": "en",
|
||||
"referral_link": "https://www.dropbox.com/referrals/AADQceVD6l02CM1dzgLM7s_o8gdaPXKc7oM?src=app9-2724483",
|
||||
"is_paired": false,
|
||||
"account_type": {
|
||||
".tag": "basic"
|
||||
},
|
||||
"root_info": {
|
||||
".tag": "user",
|
||||
"root_namespace_id": "3179550035",
|
||||
"home_namespace_id": "3179550035"
|
||||
}
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
{
|
||||
".tag": "file",
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9A",
|
||||
"client_modified": "2024-06-05T10:31:56Z",
|
||||
"server_modified": "2024-06-05T10:31:56Z",
|
||||
"rev": "61a221362eab5bd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
@ -1 +0,0 @@
|
||||
НЕ JSON: 25 50 44 46 2D 31 2E 35 0D 0A 25 B5 B5 B5 B5 0D 0A 31 20 30 20 6F 62 6A 0D 0A 3C 3C 2F 54 79 70 65 2F 43 61 74 61 6C 6F 67 2F 50 61 67 65 73 20 32 20 30 20 52 2F 4C 61 6E 67 28 65 6E 2D 55 53…
|
@ -1,17 +0,0 @@
|
||||
{
|
||||
"is_deleted": false,
|
||||
"entries": [
|
||||
{
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9A",
|
||||
"client_modified": "2024-06-05T10:31:56Z",
|
||||
"server_modified": "2024-06-05T10:31:56Z",
|
||||
"rev": "61a221362eab5bd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
]
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
{
|
||||
"paths_to_tags": [
|
||||
{
|
||||
"path": "/New/Dogs.mp3",
|
||||
"tags": []
|
||||
},
|
||||
{
|
||||
"path": "/New/mydoc.docx",
|
||||
"tags": [
|
||||
{
|
||||
".tag": "user_generated_tag",
|
||||
"tag_text": "важное"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1 +0,0 @@
|
||||
"https://www.dropbox.com/oauth2/authorize?client_id=oynqxdsqft8oyky&response_type=code&token_access_type=offline"
|
@ -1,13 +0,0 @@
|
||||
{
|
||||
".tag": "complete",
|
||||
"name": "url_doc.docx",
|
||||
"path_lower": "/new/url_doc.docx",
|
||||
"path_display": "/New/url_doc.docx",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9w",
|
||||
"client_modified": "2024-06-05T10:32:53Z",
|
||||
"server_modified": "2024-06-05T10:32:54Z",
|
||||
"rev": "61a2216cfe35abd841553",
|
||||
"size": 24069,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
||||
}
|
@ -1 +0,0 @@
|
||||
НЕ JSON: 50 4B 03 04 14 00 00 08 00 00 C9 88 C3 58 00 00 00 00 00 00 00 00 00 00 00 00 04 00 09 00 4E 65 77 2F 55 54 05 00 01 0B F8 5D 66 50 4B 03 04 14 00 08 08 00 00 4F 87 AF 58 00 00 00 00 00 00 00…
|
@ -1 +0,0 @@
|
||||
НЕ JSON: FF D8 FF E1 54 C1 45 78 69 66 00 00 49 49 2A 00 08 00 00 00 0B 00 0E 01 02 00 20 00 00 00 92 00 00 00 0F 01 02 00 05 00 00 00 B2 00 00 00 10 01 02 00 07 00 00 00 B8 00 00 00 12 01 03 00 01 00…
|
@ -1,8 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
"name": "Новый каталог",
|
||||
"path_lower": "/новый каталог",
|
||||
"path_display": "/Новый каталог",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC-A"
|
||||
}
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
{
|
||||
"metadata": {
|
||||
".tag": "file",
|
||||
"name": "pic.png",
|
||||
"path_lower": "/new/pic.png",
|
||||
"path_display": "/New/pic.png",
|
||||
"id": "id:kJU6-a-pT48AAAAAAAAC9A",
|
||||
"client_modified": "2024-06-05T10:31:56Z",
|
||||
"server_modified": "2024-06-05T10:32:33Z",
|
||||
"rev": "61a22159a5268bd841553",
|
||||
"size": 2114023,
|
||||
"is_downloadable": true,
|
||||
"content_hash": "0f3b18c255b0f252bd326cacc04c15c3aa57bd6b8234adb65aa7bb2987a65492"
|
||||
}
|
||||
}
|
@ -1 +0,0 @@
|
||||
{}
|
@ -1,5 +0,0 @@
|
||||
{
|
||||
"ok": false,
|
||||
"error_code": 400,
|
||||
"description": "Bad Request: can't remove chat owner"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_thread_id": 2695,
|
||||
"name": "TestTopic 08f61896-66e3-4f3a-8355-347c5b632d97",
|
||||
"icon_color": 7322096,
|
||||
"icon_custom_emoji_id": "5357419403325481346"
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"invite_link": "https://t.me/+sWkNMGEjYxU1YjNi",
|
||||
"name": "Link 06/05/2024 13:33:12",
|
||||
"creator": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"expire_date": 1717677192,
|
||||
"member_limit": 200,
|
||||
"creates_join_request": false,
|
||||
"is_primary": false,
|
||||
"is_revoked": false
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true,
|
||||
"description": "Webhook is already deleted"
|
||||
}
|
@ -1 +0,0 @@
|
||||
NOT JSON: FF D8 FF E0 00 10 4A 46 49 46 00 01 01 01 00 48 00 48 00 00 FF DB 00 43 00 0E 0A 0B 0D 0B 09 0E 0D 0C 0D 10 0F 0E 11 16 24 17 16 14 14 16 2C 20 21 1A 24 34 2E 37 36 33 2E 32 32 3A 41 53 46 3A…
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4944,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594375,
|
||||
"forward_origin": {
|
||||
"type": "channel",
|
||||
"chat": {
|
||||
"id": -1001893407333,
|
||||
"title": "Тестовый канал",
|
||||
"username": "testsichee",
|
||||
"type": "channel"
|
||||
},
|
||||
"message_id": 4977,
|
||||
"date": 1717594243
|
||||
},
|
||||
"forward_from_chat": {
|
||||
"id": -1001893407333,
|
||||
"title": "Тестовый канал",
|
||||
"username": "testsichee",
|
||||
"type": "channel"
|
||||
},
|
||||
"forward_from_message_id": 4977,
|
||||
"forward_date": 1717594243,
|
||||
"text": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
{
|
||||
"5434144690511290129": "📰",
|
||||
"5312536423851630001": "💡",
|
||||
"5312016608254762256": "⚡️",
|
||||
"5377544228505134960": "🎙",
|
||||
"5418085807791545980": "🔝",
|
||||
"5370870893004203704": "🗣",
|
||||
"5420216386448270341": "🆒",
|
||||
"5379748062124056162": "❗️",
|
||||
"5373251851074415873": "📝",
|
||||
"5433614043006903194": "📆",
|
||||
"5357315181649076022": "📁",
|
||||
"5309965701241379366": "🔎",
|
||||
"5309984423003823246": "📣",
|
||||
"5312241539987020022": "🔥",
|
||||
"5312138559556164615": "❤️",
|
||||
"5377316857231450742": "❓",
|
||||
"5350305691942788490": "📈",
|
||||
"5350713563512052787": "📉",
|
||||
"5309958691854754293": "💎",
|
||||
"5350452584119279096": "💰",
|
||||
"5309929258443874898": "💸",
|
||||
"5377690785674175481": "🪙",
|
||||
"5310107765874632305": "💱",
|
||||
"5377438129928020693": "⁉️",
|
||||
"5309950797704865693": "🎮",
|
||||
"5350554349074391003": "💻",
|
||||
"5409357944619802453": "📱",
|
||||
"5312322066328853156": "🚗",
|
||||
"5312486108309757006": "🏠",
|
||||
"5310029292527164639": "💘",
|
||||
"5310228579009699834": "🎉",
|
||||
"5377498341074542641": "‼️",
|
||||
"5312315739842026755": "🏆",
|
||||
"5408906741125490282": "🏁",
|
||||
"5368653135101310687": "🎬",
|
||||
"5310045076531978942": "🎵",
|
||||
"5420331611830886484": "🔞",
|
||||
"5350481781306958339": "📚",
|
||||
"5357107601584693888": "👑",
|
||||
"5375159220280762629": "⚽️",
|
||||
"5384327463629233871": "🏀",
|
||||
"5350513667144163474": "📺",
|
||||
"5357121491508928442": "👀",
|
||||
"5357185426392096577": "🫦",
|
||||
"5310157398516703416": "🍓",
|
||||
"5310262535021142850": "💄",
|
||||
"5368741306484925109": "👠",
|
||||
"5348436127038579546": "✈️",
|
||||
"5357120306097956843": "🧳",
|
||||
"5310303848311562896": "🏖",
|
||||
"5350424168615649565": "⛅️",
|
||||
"5413625003218313783": "🦄",
|
||||
"5350699789551935589": "🛍",
|
||||
"5377478880577724584": "👜",
|
||||
"5431492767249342908": "🛒",
|
||||
"5350497316203668441": "🚂",
|
||||
"5350422527938141909": "🛥",
|
||||
"5418196338774907917": "🏔",
|
||||
"5350648297189023928": "🏕",
|
||||
"5309832892262654231": "🤖",
|
||||
"5350751634102166060": "🪩",
|
||||
"5377624166436445368": "🎟",
|
||||
"5386395194029515402": "🏴☠️",
|
||||
"5350387571199319521": "🗳",
|
||||
"5357419403325481346": "🎓",
|
||||
"5368585403467048206": "🔭",
|
||||
"5377580546748588396": "🔬",
|
||||
"5377317729109811382": "🎶",
|
||||
"5382003830487523366": "🎤",
|
||||
"5357298525765902091": "🕺",
|
||||
"5357370526597653193": "💃",
|
||||
"5357188789351490453": "🪖",
|
||||
"5348227245599105972": "💼",
|
||||
"5411138633765757782": "🧪",
|
||||
"5386435923204382258": "👨👩👧👦",
|
||||
"5377675010259297233": "👶",
|
||||
"5386609083400856174": "🤰",
|
||||
"5368808634392257474": "💅",
|
||||
"5350548830041415279": "🏛",
|
||||
"5355127101970194557": "🧮",
|
||||
"5386379624773066504": "🖨",
|
||||
"5377494501373780436": "👮♂️",
|
||||
"5350307998340226571": "🩺",
|
||||
"5310094636159607472": "💊",
|
||||
"5310139157790596888": "💉",
|
||||
"5377468357907849200": "🧼",
|
||||
"5418115271267197333": "🪪",
|
||||
"5372819184658949787": "🛃",
|
||||
"5350344462612570293": "🍽",
|
||||
"5384574037701696503": "🐟",
|
||||
"5310039132297242441": "🎨",
|
||||
"5350658016700013471": "🎭",
|
||||
"5357504778685392027": "🎩",
|
||||
"5350367161514732241": "🔮",
|
||||
"5350520238444126134": "🍹",
|
||||
"5310132165583840589": "🎂",
|
||||
"5350392020785437399": "☕️",
|
||||
"5350406176997646350": "🍣",
|
||||
"5350403544182694064": "🍔",
|
||||
"5350444672789519765": "🍕",
|
||||
"5312424913615723286": "🦠",
|
||||
"5417915203100613993": "💬",
|
||||
"5312054580060625569": "🎄",
|
||||
"5309744892677727325": "🎃",
|
||||
"5238156910363950406": "✍️",
|
||||
"5235579393115438657": "⭐️",
|
||||
"5237699328843200968": "✅",
|
||||
"5238027455754680851": "🎖",
|
||||
"5238234236955148254": "🤡",
|
||||
"5237889595894414384": "🧠",
|
||||
"5237999392438371490": "🦮",
|
||||
"5235912661102773458": "🐈"
|
||||
}
|
@ -1,13 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot",
|
||||
"can_join_groups": true,
|
||||
"can_read_all_group_messages": false,
|
||||
"supports_inline_queries": false,
|
||||
"can_connect_to_business": false
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": 2
|
||||
}
|
@ -1,327 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": [
|
||||
{
|
||||
"update_id": 291366242,
|
||||
"channel_post": {
|
||||
"message_id": 4976,
|
||||
"sender_chat": {
|
||||
"id": -1001893407333,
|
||||
"title": "Тестовый канал",
|
||||
"username": "testsichee",
|
||||
"type": "channel"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001893407333,
|
||||
"title": "Тестовый канал",
|
||||
"username": "testsichee",
|
||||
"type": "channel"
|
||||
},
|
||||
"date": 1717583727,
|
||||
"pinned_message": {
|
||||
"message_id": 4961,
|
||||
"sender_chat": {
|
||||
"id": -1001893407333,
|
||||
"title": "Тестовый канал",
|
||||
"username": "testsichee",
|
||||
"type": "channel"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001893407333,
|
||||
"title": "Тестовый канал",
|
||||
"username": "testsichee",
|
||||
"type": "channel"
|
||||
},
|
||||
"date": 1717583551,
|
||||
"text": "Строковое значение"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366243,
|
||||
"message": {
|
||||
"message_id": 2684,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583751,
|
||||
"message_thread_id": 2684,
|
||||
"forum_topic_created": {
|
||||
"name": "Тестовая тема 20163bbd-ed4d-49a2-8301-8211c45d3196",
|
||||
"icon_color": 7322096,
|
||||
"icon_custom_emoji_id": "5357419403325481346"
|
||||
},
|
||||
"is_topic_message": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366244,
|
||||
"message": {
|
||||
"message_id": 2686,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583752,
|
||||
"message_thread_id": 2684,
|
||||
"reply_to_message": {
|
||||
"message_id": 2684,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583751,
|
||||
"message_thread_id": 2684,
|
||||
"forum_topic_created": {
|
||||
"name": "Тестовая тема 20163bbd-ed4d-49a2-8301-8211c45d3196",
|
||||
"icon_color": 7322096,
|
||||
"icon_custom_emoji_id": "5357419403325481346"
|
||||
},
|
||||
"is_topic_message": true
|
||||
},
|
||||
"forum_topic_edited": {
|
||||
"name": "Новый тестовый заголовок",
|
||||
"icon_custom_emoji_id": "5310132165583840589"
|
||||
},
|
||||
"is_topic_message": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366245,
|
||||
"message": {
|
||||
"message_id": 2687,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583757,
|
||||
"forum_topic_reopened": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366246,
|
||||
"message": {
|
||||
"message_id": 2688,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583757,
|
||||
"forum_topic_closed": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366247,
|
||||
"message": {
|
||||
"message_id": 2689,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583757,
|
||||
"message_thread_id": 2684,
|
||||
"reply_to_message": {
|
||||
"message_id": 2684,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583751,
|
||||
"message_thread_id": 2684,
|
||||
"forum_topic_created": {
|
||||
"name": "Тестовая тема 20163bbd-ed4d-49a2-8301-8211c45d3196",
|
||||
"icon_color": 7322096,
|
||||
"icon_custom_emoji_id": "5357419403325481346"
|
||||
},
|
||||
"is_topic_message": true
|
||||
},
|
||||
"forum_topic_closed": {},
|
||||
"is_topic_message": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366248,
|
||||
"message": {
|
||||
"message_id": 2690,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583783,
|
||||
"forum_topic_reopened": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366249,
|
||||
"message": {
|
||||
"message_id": 2691,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583783,
|
||||
"message_thread_id": 2684,
|
||||
"reply_to_message": {
|
||||
"message_id": 2684,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583751,
|
||||
"message_thread_id": 2684,
|
||||
"forum_topic_created": {
|
||||
"name": "Тестовая тема 20163bbd-ed4d-49a2-8301-8211c45d3196",
|
||||
"icon_color": 7322096,
|
||||
"icon_custom_emoji_id": "5357419403325481346"
|
||||
},
|
||||
"is_topic_message": true
|
||||
},
|
||||
"forum_topic_reopened": {},
|
||||
"is_topic_message": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366250,
|
||||
"message": {
|
||||
"message_id": 2692,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583840,
|
||||
"forum_topic_edited": {
|
||||
"name": "Новое имя главной темы 875aebe6-12c8-45b6-bfe9-a69195752489"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366251,
|
||||
"message": {
|
||||
"message_id": 2693,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583847,
|
||||
"general_forum_topic_hidden": {}
|
||||
}
|
||||
},
|
||||
{
|
||||
"update_id": 291366252,
|
||||
"message": {
|
||||
"message_id": 2694,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": -1001971186208,
|
||||
"title": "Тест",
|
||||
"is_forum": true,
|
||||
"type": "supergroup"
|
||||
},
|
||||
"date": 1717583852,
|
||||
"general_forum_topic_unhidden": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4936,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594293,
|
||||
"audio": {
|
||||
"duration": 228,
|
||||
"file_name": "audio",
|
||||
"mime_type": "audio/mpeg",
|
||||
"title": "Dogs",
|
||||
"performer": "Motorhead",
|
||||
"file_id": "CQACAgIAAxkDAAITSGZgaLTNbxObUoWmlibPRJkoTXxbAAKLTAACBlMBS69wQrpUaJtqNQQ",
|
||||
"file_unique_id": "AgADi0wAAgZTAUs",
|
||||
"file_size": 9229352
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4942,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594341,
|
||||
"contact": {
|
||||
"phone_number": "88005553535",
|
||||
"first_name": "Петр",
|
||||
"last_name": "Петров"
|
||||
}
|
||||
}
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4937,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594309,
|
||||
"document": {
|
||||
"file_name": "document.docx",
|
||||
"mime_type": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
||||
"file_id": "BQACAgIAAxkDAAITSWZgaMW56Eg918hH4GLtrsbzSPBjAAKNTAACBlMBS4aPiWERFmimNQQ",
|
||||
"file_unique_id": "AgADjUwAAgZTAUs",
|
||||
"file_size": 24069
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4938,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594317,
|
||||
"animation": {
|
||||
"file_name": "animation.gif.mp4",
|
||||
"mime_type": "video/mp4",
|
||||
"duration": 3,
|
||||
"width": 220,
|
||||
"height": 220,
|
||||
"thumbnail": {
|
||||
"file_id": "AAMCAgADGQMAAhNKZmBozQuJxGSzxa_DQ8M51SWLaWAAAo5MAAIGUwFLH6KnXa1Dcg0BAAdtAAM1BA",
|
||||
"file_unique_id": "AQADjkwAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"thumb": {
|
||||
"file_id": "AAMCAgADGQMAAhNKZmBozQuJxGSzxa_DQ8M51SWLaWAAAo5MAAIGUwFLH6KnXa1Dcg0BAAdtAAM1BA",
|
||||
"file_unique_id": "AQADjkwAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"file_id": "CgACAgIAAxkDAAITSmZgaM0LicRks8Wvw0PDOdUli2lgAAKOTAACBlMBSx-ip12tQ3INNQQ",
|
||||
"file_unique_id": "AgADjkwAAgZTAUs",
|
||||
"file_size": 84941
|
||||
},
|
||||
"document": {
|
||||
"file_name": "animation.gif.mp4",
|
||||
"mime_type": "video/mp4",
|
||||
"thumbnail": {
|
||||
"file_id": "AAMCAgADGQMAAhNKZmBozQuJxGSzxa_DQ8M51SWLaWAAAo5MAAIGUwFLH6KnXa1Dcg0BAAdtAAM1BA",
|
||||
"file_unique_id": "AQADjkwAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"thumb": {
|
||||
"file_id": "AAMCAgADGQMAAhNKZmBozQuJxGSzxa_DQ8M51SWLaWAAAo5MAAIGUwFLH6KnXa1Dcg0BAAdtAAM1BA",
|
||||
"file_unique_id": "AQADjkwAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"file_id": "CgACAgIAAxkDAAITSmZgaM0LicRks8Wvw0PDOdUli2lgAAKOTAACBlMBSx-ip12tQ3INNQQ",
|
||||
"file_unique_id": "AgADjkwAAgZTAUs",
|
||||
"file_size": 84941
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4934,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594257,
|
||||
"photo": [
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITRmZgaJGRZVotT_qmUVgBks0qsu5fAAKa2TEbvv6xSgxyd39G8AuyAQADAgADcwADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp4",
|
||||
"file_size": 1568,
|
||||
"width": 90,
|
||||
"height": 67
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITRmZgaJGRZVotT_qmUVgBks0qsu5fAAKa2TEbvv6xSgxyd39G8AuyAQADAgADbQADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUpy",
|
||||
"file_size": 21633,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITRmZgaJGRZVotT_qmUVgBks0qsu5fAAKa2TEbvv6xSgxyd39G8AuyAQADAgADeAADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp9",
|
||||
"file_size": 99260,
|
||||
"width": 800,
|
||||
"height": 600
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITRmZgaJGRZVotT_qmUVgBks0qsu5fAAKa2TEbvv6xSgxyd39G8AuyAQADAgADeQADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp-",
|
||||
"file_size": 218651,
|
||||
"width": 1280,
|
||||
"height": 960
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITRmZgaJGRZVotT_qmUVgBks0qsu5fAAKa2TEbvv6xSgxyd39G8AuyAQADAgADdwADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp8",
|
||||
"file_size": 650214,
|
||||
"width": 2560,
|
||||
"height": 1920
|
||||
}
|
||||
],
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4941,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594335,
|
||||
"location": {
|
||||
"latitude": 48.873739,
|
||||
"longitude": 48.873733
|
||||
}
|
||||
}
|
||||
}
|
@ -1,103 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": [
|
||||
{
|
||||
"message_id": 4939,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594328,
|
||||
"media_group_id": "13740754631654554",
|
||||
"photo": [
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITS2ZgaNiskzwBobndwCsjifBl6gznAAKa2TEbvv6xSgxyd39G8AuyAQADAgADcwADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp4",
|
||||
"file_size": 1568,
|
||||
"width": 90,
|
||||
"height": 67
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITS2ZgaNiskzwBobndwCsjifBl6gznAAKa2TEbvv6xSgxyd39G8AuyAQADAgADbQADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUpy",
|
||||
"file_size": 21633,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITS2ZgaNiskzwBobndwCsjifBl6gznAAKa2TEbvv6xSgxyd39G8AuyAQADAgADeAADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp9",
|
||||
"file_size": 99260,
|
||||
"width": 800,
|
||||
"height": 600
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITS2ZgaNiskzwBobndwCsjifBl6gznAAKa2TEbvv6xSgxyd39G8AuyAQADAgADeQADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp-",
|
||||
"file_size": 218651,
|
||||
"width": 1280,
|
||||
"height": 960
|
||||
},
|
||||
{
|
||||
"file_id": "AgACAgIAAxkDAAITS2ZgaNiskzwBobndwCsjifBl6gznAAKa2TEbvv6xSgxyd39G8AuyAQADAgADdwADNQQ",
|
||||
"file_unique_id": "AQADmtkxG77-sUp8",
|
||||
"file_size": 650214,
|
||||
"width": 2560,
|
||||
"height": 1920
|
||||
}
|
||||
],
|
||||
"caption": "Строковое значение"
|
||||
},
|
||||
{
|
||||
"message_id": 4940,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594328,
|
||||
"media_group_id": "13740754631654554",
|
||||
"video": {
|
||||
"duration": 5,
|
||||
"width": 640,
|
||||
"height": 480,
|
||||
"file_name": "video1",
|
||||
"mime_type": "video/mp4",
|
||||
"thumbnail": {
|
||||
"file_id": "AAMCAgADGQMAAhNMZmBo2FT0PM1Thl0QfjkQxIXedD0AAo9MAAIGUwFLxtjWJ_IR1qIBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADj0wAAgZTAUty",
|
||||
"file_size": 20106,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
"thumb": {
|
||||
"file_id": "AAMCAgADGQMAAhNMZmBo2FT0PM1Thl0QfjkQxIXedD0AAo9MAAIGUwFLxtjWJ_IR1qIBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADj0wAAgZTAUty",
|
||||
"file_size": 20106,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
"file_id": "BAACAgIAAxkDAAITTGZgaNhU9DzNU4ZdEH45EMSF3nQ9AAKPTAACBlMBS8bY1ifyEdaiNQQ",
|
||||
"file_unique_id": "AgADj0wAAgZTAUs",
|
||||
"file_size": 1137878
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4943,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594368,
|
||||
"poll": {
|
||||
"id": "5404692313056217132",
|
||||
"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
|
||||
}
|
||||
}
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4933,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594242,
|
||||
"text": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4935,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717594268,
|
||||
"video": {
|
||||
"duration": 5,
|
||||
"width": 640,
|
||||
"height": 480,
|
||||
"file_name": "video",
|
||||
"mime_type": "video/mp4",
|
||||
"thumbnail": {
|
||||
"file_id": "AAMCAgADGQMAAhNHZmBomxBC1tNhQvFoh8MffeiLysoAAolMAAIGUwFL7l_3PyRgHzwBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADiUwAAgZTAUty",
|
||||
"file_size": 20106,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
"thumb": {
|
||||
"file_id": "AAMCAgADGQMAAhNHZmBomxBC1tNhQvFoh8MffeiLysoAAolMAAIGUwFL7l_3PyRgHzwBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADiUwAAgZTAUty",
|
||||
"file_size": 20106,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
"file_id": "BAACAgIAAxkDAAITR2ZgaJsQQtbTYULxaIfDH33oi8rKAAKJTAACBlMBS-5f9z8kYB88NQQ",
|
||||
"file_unique_id": "AgADiUwAAgZTAUs",
|
||||
"file_size": 1137878
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true,
|
||||
"description": "Webhook was set"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
{
|
||||
"ok": false,
|
||||
"error_code": 400,
|
||||
"description": "Bad Request: can't remove chat owner"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
{
|
||||
"ok": false,
|
||||
"error_code": 400,
|
||||
"description": "Bad Request: can't remove chat owner"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": true
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4924,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717583602,
|
||||
"audio": {
|
||||
"duration": 228,
|
||||
"file_name": "audio",
|
||||
"mime_type": "audio/mpeg",
|
||||
"title": "Dogs",
|
||||
"performer": "Motorhead",
|
||||
"file_id": "CQACAgIAAxkDAAITPGZgPvInJkZnNGdju22jPtH3SnWAAAITSgACBlMBSwltWVdxYUJtNQQ",
|
||||
"file_unique_id": "AgADE0oAAgZTAUs",
|
||||
"file_size": 9229352
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,45 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4923,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717583574,
|
||||
"video": {
|
||||
"duration": 5,
|
||||
"width": 640,
|
||||
"height": 480,
|
||||
"file_name": "video",
|
||||
"mime_type": "video/mp4",
|
||||
"thumbnail": {
|
||||
"file_id": "AAMCAgADGQMAAhM7ZmA-1orAq52rbfgkegsb8ckHAjQAAhJKAAIGUwFLXBFL_VKWVioBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADEkoAAgZTAUty",
|
||||
"file_size": 20106,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
"thumb": {
|
||||
"file_id": "AAMCAgADGQMAAhM7ZmA-1orAq52rbfgkegsb8ckHAjQAAhJKAAIGUwFLXBFL_VKWVioBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADEkoAAgZTAUty",
|
||||
"file_size": 20106,
|
||||
"width": 320,
|
||||
"height": 240
|
||||
},
|
||||
"file_id": "BAACAgIAAxkDAAITO2ZgPtaKwKudq234JHoLG_HJBwI0AAISSgACBlMBS1wRS_1SllYqNQQ",
|
||||
"file_unique_id": "AgADEkoAAgZTAUs",
|
||||
"file_size": 1137878
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4926,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717583642,
|
||||
"animation": {
|
||||
"file_name": "animation.gif.mp4",
|
||||
"mime_type": "video/mp4",
|
||||
"duration": 3,
|
||||
"width": 220,
|
||||
"height": 220,
|
||||
"thumbnail": {
|
||||
"file_id": "AAMCAgADGQMAAhM-ZmA_GvQjfRfM48YB22VDAhDZtZUAAhVKAAIGUwFL-ONkAWJF8WMBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADFUoAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"thumb": {
|
||||
"file_id": "AAMCAgADGQMAAhM-ZmA_GvQjfRfM48YB22VDAhDZtZUAAhVKAAIGUwFL-ONkAWJF8WMBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADFUoAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"file_id": "CgACAgIAAxkDAAITPmZgPxr0I30XzOPGAdtlQwIQ2bWVAAIVSgACBlMBS_jjZAFiRfFjNQQ",
|
||||
"file_unique_id": "AgADFUoAAgZTAUs",
|
||||
"file_size": 84941
|
||||
},
|
||||
"document": {
|
||||
"file_name": "animation.gif.mp4",
|
||||
"mime_type": "video/mp4",
|
||||
"thumbnail": {
|
||||
"file_id": "AAMCAgADGQMAAhM-ZmA_GvQjfRfM48YB22VDAhDZtZUAAhVKAAIGUwFL-ONkAWJF8WMBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADFUoAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"thumb": {
|
||||
"file_id": "AAMCAgADGQMAAhM-ZmA_GvQjfRfM48YB22VDAhDZtZUAAhVKAAIGUwFL-ONkAWJF8WMBAAdtAAM1BA",
|
||||
"file_unique_id": "AQADFUoAAgZTAUty",
|
||||
"file_size": 11352,
|
||||
"width": 220,
|
||||
"height": 220
|
||||
},
|
||||
"file_id": "CgACAgIAAxkDAAITPmZgPxr0I30XzOPGAdtlQwIQ2bWVAAIVSgACBlMBS_jjZAFiRfFjNQQ",
|
||||
"file_unique_id": "AgADFUoAAgZTAUs",
|
||||
"file_size": 84941
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
{
|
||||
"ok": true,
|
||||
"result": {
|
||||
"message_id": 4925,
|
||||
"from": {
|
||||
"id": 6129457865,
|
||||
"is_bot": true,
|
||||
"first_name": "Бот Виталий",
|
||||
"username": "sicheebot"
|
||||
},
|
||||
"chat": {
|
||||
"id": 461699897,
|
||||
"first_name": "Anton",
|
||||
"last_name": "Titowets",
|
||||
"username": "JKIee",
|
||||
"type": "private"
|
||||
},
|
||||
"date": 1717583617,
|
||||
"document": {
|
||||
"file_name": "document.docx",
|
||||
"mime_type": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
||||
"file_id": "BQACAgIAAxkDAAITPWZgPwE4--HzkfgdI8LUZMtAlvDaAAIUSgACBlMBSwlIvPWPuxkGNQQ",
|
||||
"file_unique_id": "AgADFEoAAgZTAUs",
|
||||
"file_size": 24069
|
||||
},
|
||||
"caption": "Строковое значение"
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user