1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-16 05:06:02 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot) 2024-10-11 09:59:59 +03:00
parent 6c4fb3a0dd
commit 5cb62ed896
120 changed files with 5723 additions and 5386 deletions

View File

@ -2111,7 +2111,7 @@ def test_vkteams(){
}
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
powershell encoding: 'UTF-8', script:'./oint.exe vkteams ResendFile --token "test" --chatid "test" --fileid "test" --text "test" --filename "test" --parsemod "test" --debug --test '
powershell encoding: 'UTF-8', script:'./oint.exe vkteams ResendFile --token "test" --chatid "test" --fileid "test" --text "test" --parsemod "test" --debug --test '
}
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {

View File

@ -2111,7 +2111,7 @@ def test_vkteams(){
}
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
powershell encoding: 'UTF-8', script:'./oint.exe vkteams ПереслатьФайл --token "test" --chatid "test" --fileid "test" --text "test" --filename "test" --parsemod "test" --debug --test '
powershell encoding: 'UTF-8', script:'./oint.exe vkteams ПереслатьФайл --token "test" --chatid "test" --fileid "test" --text "test" --parsemod "test" --debug --test '
}
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {

View File

@ -7,4 +7,4 @@
Token = "37d1fe66006e9f06006b12e400000001000...";
FieldID = "257";
Result = OPI_Bitrix24.GetCustomTaskField(URL, FieldID, );
Result = OPI_Bitrix24.GetCustomTaskField(URL, FieldID);

View File

@ -2,10 +2,8 @@
Result = OPI_Bitrix24.GetTimekeepingSettings(URL);
Hour = 3600;
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
UserID = 1;
Result = OPI_Bitrix24.GetTimekeepingSettings(URL, UserID);
Result = OPI_Bitrix24.GetTimekeepingSettings(URL, UserID, Token);

View File

@ -2,10 +2,8 @@
Result = OPI_Bitrix24.GetTimekeepingStatus(URL);
Hour = 3600;
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
UserID = 1;
Result = OPI_Bitrix24.GetTimekeepingStatus(URL, UserID);
Result = OPI_Bitrix24.GetTimekeepingStatus(URL, UserID, Token);

View File

@ -2,10 +2,8 @@
Result = OPI_Bitrix24.PauseTimekeeping(URL);
Hour = 3600;
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
UserID = 1;
Result = OPI_Bitrix24.PauseTimekeeping(URL, UserID);
Result = OPI_Bitrix24.PauseTimekeeping(URL, UserID, Token);

View File

@ -10,4 +10,4 @@
Time = OPI_Tools.GetCurrentDate() - Hour;
Report = "Late";
Result = OPI_Bitrix24.StartTimekeeping(URL, UserID, Time, Report, );
Result = OPI_Bitrix24.StartTimekeeping(URL, UserID, Time, Report, Token);

View File

@ -1,7 +1,6 @@
 Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
ReplyID = "7419291601358293295";
Text = "File caption";
File = "https://openyellow.neocities.org/test_data/song.m4a" ; // URL
FilePath = GetTempFileName("m4a"); // Path

View File

@ -36,7 +36,7 @@ Method at API documentation: [task.item.userfield.get](https://dev.1c-bitrix.ru/
Token = "37d1fe66006e9f06006b12e400000001000...";
FieldID = "257";
Result = OPI_Bitrix24.GetCustomTaskField(URL, FieldID, );
Result = OPI_Bitrix24.GetCustomTaskField(URL, FieldID);
```

View File

@ -31,13 +31,11 @@ Method at API documentation: [timeman.settings](https://dev.1c-bitrix.ru/rest_he
Result = OPI_Bitrix24.GetTimekeepingSettings(URL);
Hour = 3600;
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
UserID = 1;
Result = OPI_Bitrix24.GetTimekeepingSettings(URL, UserID);
Result = OPI_Bitrix24.GetTimekeepingSettings(URL, UserID, Token);
```

View File

@ -31,13 +31,11 @@ Method at API documentation: [timeman.status](https://dev.1c-bitrix.ru/rest_help
Result = OPI_Bitrix24.GetTimekeepingStatus(URL);
Hour = 3600;
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
UserID = 1;
Result = OPI_Bitrix24.GetTimekeepingStatus(URL, UserID);
Result = OPI_Bitrix24.GetTimekeepingStatus(URL, UserID, Token);
```

View File

@ -31,13 +31,11 @@ Method at API documentation: [timeman.pause](https://dev.1c-bitrix.ru/rest_help/
Result = OPI_Bitrix24.PauseTimekeeping(URL);
Hour = 3600;
URL = "b24-ar17wx.bitrix24.by";
Token = "37d1fe66006e9f06006b12e400000001000...";
UserID = 1;
Result = OPI_Bitrix24.PauseTimekeeping(URL, UserID);
Result = OPI_Bitrix24.PauseTimekeeping(URL, UserID, Token);
```

View File

@ -41,7 +41,7 @@ Method at API documentation: [timeman.open](https://dev.1c-bitrix.ru/rest_help/t
Time = OPI_Tools.GetCurrentDate() - Hour;
Report = "Late";
Result = OPI_Bitrix24.StartTimekeeping(URL, UserID, Time, Report, );
Result = OPI_Bitrix24.StartTimekeeping(URL, UserID, Time, Report, Token);
```

View File

@ -20,7 +20,10 @@ sidebar_position: 1
<br/>
:::tip
Method at API documentation: [banChatMember](https://core.telegram.org/bots/api#banchatmember)
:::
<br/>
```bsl title="Code example"

View File

@ -22,7 +22,10 @@ sidebar_position: 3
<br/>
:::tip
Method at API documentation: [createChatInviteLink](https://core.telegram.org/bots/api#createchatinvitelink)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 7
<br/>
:::tip
Method at API documentation: [deleteMessage](https://core.telegram.org/bots/api#deletemessage)
:::
<br/>
```bsl title="Code example"

View File

@ -19,7 +19,10 @@ sidebar_position: 6
<br/>
:::tip
Method at API documentation: [getChatMemberCount](https://core.telegram.org/bots/api#getchatmembercount)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 4
<br/>
:::tip
Method at API documentation: [pinChatMessage](https://core.telegram.org/bots/api#pinchatmessage)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 2
<br/>
:::tip
Method at API documentation: [unbanChatMember](https://core.telegram.org/bots/api#unbanchatmember)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 5
<br/>
:::tip
Method at API documentation: [unpinChatMessage](https://core.telegram.org/bots/api#unpinchatmessage)
:::
<br/>
```bsl title="Code example"

View File

@ -18,7 +18,10 @@ sidebar_position: 4
<br/>
:::tip
Method at API documentation: [deleteWebhook](https://core.telegram.org/bots/api#deletewebhook)
:::
<br/>
```bsl title="Code example"

View File

@ -19,7 +19,10 @@ sidebar_position: 5
<br/>
:::tip
Method at API documentation: [getFile](https://core.telegram.org/bots/api#getfile)
:::
<br/>
```bsl title="Code example"

View File

@ -3,7 +3,7 @@ sidebar_position: 1
---
# Get bot information
Executes the /getMe request, returning basic bot information: name, id, ability to add the bot to groups, etc..
Executes the request, returning basic bot information: name, id, ability to add the bot to groups, etc..
@ -18,7 +18,10 @@ sidebar_position: 1
<br/>
:::tip
Method at API documentation: [getMe](https://core.telegram.org/bots/api#getme)
:::
<br/>
```bsl title="Code example"

View File

@ -3,7 +3,7 @@ sidebar_position: 2
---
# Get updates
Executes a request /getUpdates, returning information about bot events. Used in polling mode
Executes a request, returning information about bot events. Used in polling mode
@ -20,7 +20,10 @@ sidebar_position: 2
<br/>
:::tip
Method at API documentation: [getUpdates](https://core.telegram.org/bots/api#getupdates)
:::
<br/>
```bsl title="Code example"

View File

@ -19,7 +19,10 @@ sidebar_position: 3
<br/>
:::tip
Method at API documentation: [setWebhook](https://core.telegram.org/bots/api#setwebhook)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 12
<br/>
:::tip
About keyboards in the API documentation: [InlineKeyboardMarkup](https://core.telegram.org/bots/api#inlinekeyboardmarkup)
:::
<br/>
```bsl title="Code example"

View File

@ -21,7 +21,10 @@ sidebar_position: 11
<br/>
:::tip
Method at API documentation: [forwardMessage](https://core.telegram.org/bots/api#forwardmessage)
:::
<br/>
```bsl title="Code example"

View File

@ -14,8 +14,8 @@ sidebar_position: 4
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Text | --text | String | Message text |
| Audio | --audio | BinaryData,String | Audio file |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| Audio | --audio | BinaryData, String | Audio file |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
| Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 4
<br/>
:::tip
Method at API documentation: [sendAudio](https://core.telegram.org/bots/api#sendaudio)
:::
<br/>
```bsl title="Code example"

View File

@ -16,14 +16,17 @@ sidebar_position: 9
| Name | --name | String | Contact name |
| LastName | --surname | String | Contact last name |
| Phone | --phone | String | Contact phone number |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
Returns: Map Of KeyAndValue - serialized JSON response from Telegram
<br/>
:::tip
Method at API documentation: [sendContact](https://core.telegram.org/bots/api#sendcontact)
:::
<br/>
```bsl title="Code example"

View File

@ -14,8 +14,8 @@ sidebar_position: 5
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Text | --text | String | Message text |
| Document | --doc | BinaryData,String | Document file |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| Document | --doc | BinaryData, String | Document file |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
| Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) |
| FileName | --filename | String | Custom displayed file name with extension, if necessary |
@ -24,7 +24,10 @@ sidebar_position: 5
<br/>
:::tip
Method at API documentation: [sendDocument](https://core.telegram.org/bots/api#senddocument)
:::
<br/>
```bsl title="Code example"

View File

@ -14,8 +14,8 @@ sidebar_position: 6
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Text | --text | String | Message text |
| GIF | --gif | BinaryData,String | GIF file |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| GIF | --gif | BinaryData, String | GIF file |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
| Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 6
<br/>
:::tip
Method at API documentation: [sendAnimation](https://core.telegram.org/bots/api#sendanimation)
:::
<br/>
```bsl title="Code example"

View File

@ -14,8 +14,8 @@ sidebar_position: 2
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Text | --text | String | Message text |
| Image | --picture | BinaryData,String | Image file |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| Image | --picture | BinaryData, String | Image file |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
| Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 2
<br/>
:::tip
Method at API documentation: [sendPhoto](https://core.telegram.org/bots/api#sendphoto)
:::
<br/>
```bsl title="Code example"

View File

@ -15,14 +15,17 @@ sidebar_position: 8
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Latitude | --lat | String, Number | Geographic latitude |
| Longitude | --long | String, Number | Geographic longitude |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
Returns: Map Of KeyAndValue - serialized JSON response from Telegram
<br/>
:::tip
Method at API documentation: [sendLocation](https://core.telegram.org/bots/api#sendlocation)
:::
<br/>
```bsl title="Code example"

View File

@ -14,8 +14,8 @@ sidebar_position: 7
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Text | --text | String | Message text |
| FileMapping | --media | Map of String | File JSON or path to .json |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| FileMapping | --media | Map of KeyAndValue | File collection: Key > File, Value > Media Type |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
| Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) |
@ -24,7 +24,7 @@ sidebar_position: 7
<br/>
:::tip
Map: Key - File, Value - media type
Method at API documentation: [sendMediaGroup](https://core.telegram.org/bots/api#sendmediagroup)
:::
<br/>

View File

@ -15,14 +15,17 @@ sidebar_position: 10
| 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 | Poll anonymity |
| 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"

View File

@ -14,7 +14,7 @@ sidebar_position: 1
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Text | --text | String | Message text |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
| Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) |
| RepliedID | --reply | String, Number | Reply to message ID |
@ -23,7 +23,10 @@ sidebar_position: 1
<br/>
:::tip
Method at API documentation: [sendMessage](https://core.telegram.org/bots/api#sendmessage)
:::
<br/>
```bsl title="Code example"

View File

@ -14,8 +14,8 @@ sidebar_position: 3
| Token | --token | String | Bot token |
| ChatID | --chat | String, Number | Target chat ID or ChatID*TopicID |
| Text | --text | String | Message text |
| Video | --video | BinaryData,String | Video file |
| Keyboard | --keyboard | String | Keyboard JSON or path to .json |
| Video | --video | BinaryData, String | Video file |
| Keyboard | --keyboard | String | Keyboard. See FormKeyboardFromButtonArray |
| Markup | --parsemode | String | Text processing type (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 3
<br/>
:::tip
Method at API documentation: [sendVideo](https://core.telegram.org/bots/api#sendvideo)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 10
<br/>
:::tip
Method at API documentation: [unpinAllForumTopicMessages](https://core.telegram.org/bots/api#unpinallforumtopicmessages)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 4
<br/>
:::tip
Method at API documentation: [closeForumTopic](https://core.telegram.org/bots/api#closeforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -21,7 +21,10 @@ sidebar_position: 2
<br/>
:::tip
Method at API documentation: [createForumTopic](https://core.telegram.org/bots/api#createforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 6
<br/>
:::tip
Method at API documentation: [deleteForumTopic](https://core.telegram.org/bots/api#deleteforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -22,7 +22,10 @@ sidebar_position: 3
<br/>
:::tip
Method at API documentation: [editForumTopic](https://core.telegram.org/bots/api#editforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 9
<br/>
:::tip
Method at API documentation: [editGeneralForumTopic](https://core.telegram.org/bots/api#editgeneralforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -18,7 +18,10 @@ sidebar_position: 1
<br/>
:::tip
Method at API documentation: [getForumTopicIconStickers](https://core.telegram.org/bots/api#getforumtopiciconstickers)
:::
<br/>
```bsl title="Code example"

View File

@ -19,7 +19,10 @@ sidebar_position: 7
<br/>
:::tip
Method at API documentation: [hideGeneralForumTopic](https://core.telegram.org/bots/api#hidegeneralforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -20,7 +20,10 @@ sidebar_position: 5
<br/>
:::tip
Method at API documentation: [reopenForumTopic](https://core.telegram.org/bots/api#reopenforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -19,7 +19,10 @@ sidebar_position: 8
<br/>
:::tip
Method at API documentation: [unhideGeneralForumTopic](https://core.telegram.org/bots/api#unhidegeneralforumtopic)
:::
<br/>
```bsl title="Code example"

View File

@ -7,7 +7,7 @@ sidebar_position: 6
`Function ResendFile(Val Token, Val ChatID, Val FileID, Val Text = "", Val FileName = "", Val Markup = "MarkdownV2") Export`
`Function ResendFile(Val Token, Val ChatID, Val FileID, Val Text = "", Val Markup = "MarkdownV2") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
@ -15,7 +15,6 @@ sidebar_position: 6
| ChatID | --chatid | String, Number | Chat ID for sending |
| FileID | --fileid | String, Number | File ID to send |
| Text | --text | String | File caption |
| FileName | --filename | String | Displayed file name |
| Markup | --parsemod | String | Markup type for message text: MarkdownV2 or HTML |

View File

@ -35,7 +35,6 @@ If you want the client to display this file as a playable voice message, it must
Token = "001.3501506236.091...";
ChatID = "689203963@chat.agent";
ReplyID = "7419291601358293295";
Text = "File caption";
File = "https://openyellow.neocities.org/test_data/song.m4a" ; // URL
FilePath = GetTempFileName("m4a"); // Path

View File

@ -10,4 +10,4 @@
Время = OPI_Инструменты.ПолучитьТекущуюДату() - Час;
Отчет = "Опоздание";
Результат = OPI_Bitrix24.НачатьУчетВремени(URL, IDПользователя, Время, Отчет, );
Результат = OPI_Bitrix24.НачатьУчетВремени(URL, IDПользователя, Время, Отчет, Токен);

View File

@ -2,10 +2,8 @@
Результат = OPI_Bitrix24.ПолучитьНастройкиУчетаВремени(URL);
Час = 3600;
URL = "b24-ar17wx.bitrix24.by";
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПользователя = 1;
Результат = OPI_Bitrix24.ПолучитьНастройкиУчетаВремени(URL, IDПользователя);
Результат = OPI_Bitrix24.ПолучитьНастройкиУчетаВремени(URL, IDПользователя, Токен);

View File

@ -7,4 +7,4 @@
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПоля = "257";
Результат = OPI_Bitrix24.ПолучитьПользовательскоеПолеЗадачи(URL, IDПоля, );
Результат = OPI_Bitrix24.ПолучитьПользовательскоеПолеЗадачи(URL, IDПоля);

View File

@ -2,10 +2,8 @@
Результат = OPI_Bitrix24.ПолучитьСтатусУчетаВремени(URL);
Час = 3600;
URL = "b24-ar17wx.bitrix24.by";
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПользователя = 1;
Результат = OPI_Bitrix24.ПолучитьСтатусУчетаВремени(URL, IDПользователя);
Результат = OPI_Bitrix24.ПолучитьСтатусУчетаВремени(URL, IDПользователя, Токен);

View File

@ -2,10 +2,8 @@
Результат = OPI_Bitrix24.ПриостановитьУчетВремени(URL);
Час = 3600;
URL = "b24-ar17wx.bitrix24.by";
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПользователя = 1;
Результат = OPI_Bitrix24.ПриостановитьУчетВремени(URL, IDПользователя);
Результат = OPI_Bitrix24.ПриостановитьУчетВремени(URL, IDПользователя, Токен);

View File

@ -1,7 +1,6 @@
 Токен = "001.3501506236.091...";
IDЧата = "689203963@chat.agent";
IDЦитируемого = "7419291601358293295";
Текст = "Подпись к файлу";
Файл = "https://openyellow.neocities.org/test_data/song.m4a" ; // URL
ФайлПуть = ПолучитьИмяВременногоФайла("m4a"); // Путь

View File

@ -36,7 +36,7 @@ sidebar_position: 4
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПоля = "257";
Результат = OPI_Bitrix24.ПолучитьПользовательскоеПолеЗадачи(URL, IDПоля, );
Результат = OPI_Bitrix24.ПолучитьПользовательскоеПолеЗадачи(URL, IDПоля);
```

View File

@ -31,13 +31,11 @@ sidebar_position: 10
Результат = OPI_Bitrix24.ПолучитьНастройкиУчетаВремени(URL);
Час = 3600;
URL = "b24-ar17wx.bitrix24.by";
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПользователя = 1;
Результат = OPI_Bitrix24.ПолучитьНастройкиУчетаВремени(URL, IDПользователя);
Результат = OPI_Bitrix24.ПолучитьНастройкиУчетаВремени(URL, IDПользователя, Токен);
```

View File

@ -31,13 +31,11 @@ sidebar_position: 9
Результат = OPI_Bitrix24.ПолучитьСтатусУчетаВремени(URL);
Час = 3600;
URL = "b24-ar17wx.bitrix24.by";
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПользователя = 1;
Результат = OPI_Bitrix24.ПолучитьСтатусУчетаВремени(URL, IDПользователя);
Результат = OPI_Bitrix24.ПолучитьСтатусУчетаВремени(URL, IDПользователя, Токен);
```

View File

@ -31,13 +31,11 @@ sidebar_position: 8
Результат = OPI_Bitrix24.ПриостановитьУчетВремени(URL);
Час = 3600;
URL = "b24-ar17wx.bitrix24.by";
Токен = "37d1fe66006e9f06006b12e400000001000...";
IDПользователя = 1;
Результат = OPI_Bitrix24.ПриостановитьУчетВремени(URL, IDПользователя);
Результат = OPI_Bitrix24.ПриостановитьУчетВремени(URL, IDПользователя, Токен);
```

View File

@ -41,7 +41,7 @@ sidebar_position: 6
Время = OPI_Инструменты.ПолучитьТекущуюДату() - Час;
Отчет = "Опоздание";
Результат = OPI_Bitrix24.НачатьУчетВремени(URL, IDПользователя, Время, Отчет, );
Результат = OPI_Bitrix24.НачатьУчетВремени(URL, IDПользователя, Время, Отчет, Токен);
```

View File

@ -12,15 +12,18 @@ sidebar_position: 1
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDПользователя | --user | Строка,Число | ID целевого пользователя |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| IDПользователя | --user | Строка, Число | ID целевого пользователя |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [banChatMember](https://core.telegram.org/bots/api#banchatmember)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,7 +12,7 @@ sidebar_position: 3
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Заголовок | --title | Строка | Заголовок приглашения |
| ДатаИстечения | --expire | Дата | Дата окончания жизни ссылки (безсрочно, если не указано) |
| ЛимитПользователей | --limit | Число | Лимит пользователей (бесконечно, если не указано) |
@ -22,7 +22,10 @@ sidebar_position: 3
<br/>
:::tip
Метод в документации API: [createChatInviteLink](https://core.telegram.org/bots/api#createchatinvitelink)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 7
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --chat | Строка,Число | ID целевого чата |
| IDСообщения | --message | Строка,Число | ID удаляемого сообщения |
| IDЧата | --chat | Строка, Число | ID целевого чата |
| IDСообщения | --message | Строка, Число | ID удаляемого сообщения |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [deleteMessage](https://core.telegram.org/bots/api#deletemessage)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,14 +12,17 @@ sidebar_position: 6
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата |
| IDЧата | --chat | Строка, Число | ID целевого чата |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [getChatMemberCount](https://core.telegram.org/bots/api#getchatmembercount)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 4
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --chat | Строка,Число | ID целевого чата |
| IDСообщения | --message | Строка,Число | ID целевого сообщения |
| IDЧата | --chat | Строка, Число | ID целевого чата |
| IDСообщения | --message | Строка, Число | ID целевого сообщения |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [pinChatMessage](https://core.telegram.org/bots/api#pinchatmessage)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 2
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDПользователя | --user | Строка,Число | ID целевого пользователя |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| IDПользователя | --user | Строка, Число | ID целевого пользователя |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [unbanChatMember](https://core.telegram.org/bots/api#unbanchatmember)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 5
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата |
| IDСообщения | --message | Строка,Число | ID целевого сообщения |
| IDЧата | --chat | Строка, Число | ID целевого чата |
| IDСообщения | --message | Строка, Число | ID целевого сообщения |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [unpinChatMessage](https://core.telegram.org/bots/api#unpinchatmessage)
:::
<br/>
```bsl title="Пример кода"

View File

@ -18,7 +18,10 @@ sidebar_position: 4
<br/>
:::tip
Метод в документации API: [deleteWebhook](https://core.telegram.org/bots/api#deletewebhook)
:::
<br/>
```bsl title="Пример кода"

View File

@ -19,7 +19,10 @@ sidebar_position: 5
<br/>
:::tip
Метод в документации API: [getFile](https://core.telegram.org/bots/api#getfile)
:::
<br/>
```bsl title="Пример кода"

View File

@ -3,7 +3,7 @@ sidebar_position: 1
---
# Получить информацию о боте
Выполняет запрос /getMe, возвращающий базовую информацию о боте: имя, id, возможность добавлять бота в группы и т.д.
Выполняет запрос, возвращающий базовую информацию о боте: имя, id, возможность добавлять бота в группы и т.д.
@ -18,7 +18,10 @@ sidebar_position: 1
<br/>
:::tip
Метод в документации API: [getMe](https://core.telegram.org/bots/api#getme)
:::
<br/>
```bsl title="Пример кода"

View File

@ -3,7 +3,7 @@ sidebar_position: 2
---
# Получить обновления
Выполняет запрос /getUpdates, возвращающий информацию о событиях бота. Используется при работе в polling режиме
Выполняет запрос, возвращающий информацию о событиях бота. Используется при работе в polling режиме
@ -20,7 +20,10 @@ sidebar_position: 2
<br/>
:::tip
Метод в документации API: [getUpdates](https://core.telegram.org/bots/api#getupdates)
:::
<br/>
```bsl title="Пример кода"

View File

@ -19,7 +19,10 @@ sidebar_position: 3
<br/>
:::tip
Метод в документации API: [setWebhook](https://core.telegram.org/bots/api#setwebhook)
:::
<br/>
```bsl title="Пример кода"

View File

@ -20,7 +20,10 @@ sidebar_position: 12
<br/>
:::tip
О клавиатурах в документации API: [InlineKeyboardMarkup](https://core.telegram.org/bots/api#inlinekeyboardmarkup)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,16 +12,19 @@ sidebar_position: 11
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDОригинала | --message | Строка,Число | ID оригинального сообщения |
| ОткудаID | --from | Строка,Число | ID чата оригинального сообщения |
| КудаID | --to | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDОригинала | --message | Строка, Число | ID оригинального сообщения |
| ОткудаID | --from | Строка, Число | ID чата оригинального сообщения |
| КудаID | --to | Строка, Число | ID целевого чата или IDЧата*IDТемы |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [forwardMessage](https://core.telegram.org/bots/api#forwardmessage)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,10 +12,10 @@ sidebar_position: 4
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Текст | --text | Строка | Текст сообщения |
| Аудио | --audio | ДвоичныеДанные,Строка | Файл аудио |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| Аудио | --audio | ДвоичныеДанные, Строка | Файл аудио |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
| Разметка | --parsemode | Строка | Вид обработки текста (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 4
<br/>
:::tip
Метод в документации API: [sendAudio](https://core.telegram.org/bots/api#sendaudio)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,18 +12,21 @@ sidebar_position: 9
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Имя | --name | Строка | Имя контакта |
| Фамилия | --surname | Строка | Фамилия контакта |
| Телефон | --phone | Строка | Телефон контакта |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [sendContact](https://core.telegram.org/bots/api#sendcontact)
:::
<br/>
```bsl title="Пример кода"

View File

@ -14,8 +14,8 @@ sidebar_position: 5
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| Текст | --text | Строка | Текст сообщения |
| Документ | --doc | ДвоичныеДанные,Строка | Файл документа |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| Документ | --doc | ДвоичныеДанные, Строка | Файл документа |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
| Разметка | --parsemode | Строка | Вид обработки текста (HTML, Markdown, MarkdownV2) |
| ИмяФайла | --filename | Строка | Отображаемое имя файла c расширением, если необходимо |
@ -24,7 +24,10 @@ sidebar_position: 5
<br/>
:::tip
Метод в документации API: [sendDocument](https://core.telegram.org/bots/api#senddocument)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,10 +12,10 @@ sidebar_position: 6
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Текст | --text | Строка | Текст сообщения |
| Гифка | --gif | ДвоичныеДанные,Строка | Файл гифки |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| Гифка | --gif | ДвоичныеДанные, Строка | Файл гифки |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
| Разметка | --parsemode | Строка | Вид обработки текста (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 6
<br/>
:::tip
Метод в документации API: [sendAnimation](https://core.telegram.org/bots/api#sendanimation)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,10 +12,10 @@ sidebar_position: 2
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Текст | --text | Строка | Текст сообщения |
| Картинка | --picture | ДвоичныеДанные,Строка | Файл картинки |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| Картинка | --picture | ДвоичныеДанные, Строка | Файл картинки |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
| Разметка | --parsemode | Строка | Вид обработки текста (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 2
<br/>
:::tip
Метод в документации API: [sendPhoto](https://core.telegram.org/bots/api#sendphoto)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,17 +12,20 @@ sidebar_position: 8
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| Широта | --lat | Строка,Число | Географическая широта |
| Долгота | --long | Строка,Число | Географическая долгота |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Широта | --lat | Строка, Число | Географическая широта |
| Долгота | --long | Строка, Число | Географическая долгота |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [sendLocation](https://core.telegram.org/bots/api#sendlocation)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,10 +12,10 @@ sidebar_position: 7
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Текст | --text | Строка | Текст сообщения |
| СоответствиеФайлов | --media | Соответствие из Строка | JSON файлов или путь к .json |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| СоответствиеФайлов | --media | Соответствие из КлючИЗначение | Коллекция файлов: Ключ > Файл, Значение > Тип медиа |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
| Разметка | --parsemode | Строка | Вид обработки текста (HTML, Markdown, MarkdownV2) |
@ -24,7 +24,7 @@ sidebar_position: 7
<br/>
:::tip
Соответствие файлов: Ключ - Файл, Значение - один из типов медиа
Метод в документации API: [sendMediaGroup](https://core.telegram.org/bots/api#sendmediagroup)
:::
<br/>

View File

@ -12,17 +12,20 @@ sidebar_position: 10
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Вопрос | --question | Строка | Вопрос опроса |
| МассивОтветов | --options | Массив из Строка | Массив вариантов ответа |
| Анонимный | --anonymous | Булево | Анонимность опроса |
| Анонимный | --anonymous | Булево | Флаг анонимности опроса |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [sendPoll](https://core.telegram.org/bots/api#sendpoll)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,18 +12,21 @@ sidebar_position: 1
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Текст | --text | Строка | Текст сообщения |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
| Разметка | --parsemode | Строка | Вид обработки текста (HTML, Markdown, MarkdownV2) |
| IDВходящего | --reply | Строка,Число | ID сообщения на которое надо ответить |
| IDВходящего | --reply | Строка, Число | ID сообщения на которое надо ответить |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [sendMessage](https://core.telegram.org/bots/api#sendmessage)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,10 +12,10 @@ sidebar_position: 3
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен бота |
| IDЧата | --chat | Строка,Число | ID целевого чата или IDЧата*IDТемы |
| IDЧата | --chat | Строка, Число | ID целевого чата или IDЧата*IDТемы |
| Текст | --text | Строка | Текст сообщения |
| Видео | --video | ДвоичныеДанные,Строка | Файл видео |
| Клавиатура | --keyboard | Строка | JSON клавиатуры или путь к .json |
| Видео | --video | ДвоичныеДанные, Строка | Файл видео |
| Клавиатура | --keyboard | Строка | Клавиатура. См. СформироватьКлавиатуруПоМассивуКнопок |
| Разметка | --parsemode | Строка | Вид обработки текста (HTML, Markdown, MarkdownV2) |
@ -23,7 +23,10 @@ sidebar_position: 3
<br/>
:::tip
Метод в документации API: [sendVideo](https://core.telegram.org/bots/api#sendvideo)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 10
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата темы |
| IDТемы | --topic | Строка,Число | ID темы. Главная, если не заполнено |
| IDЧата | --forum | Строка, Число | ID чата темы |
| IDТемы | --topic | Строка, Число | ID темы. Главная, если не заполнено |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [unpinAllForumTopicMessages](https://core.telegram.org/bots/api#unpinallforumtopicmessages)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 4
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата темы |
| IDТемы | --topic | Строка,Число | ID темы |
| IDЧата | --forum | Строка, Число | ID чата темы |
| IDТемы | --topic | Строка, Число | ID темы |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [closeForumTopic](https://core.telegram.org/bots/api#closeforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,7 +12,7 @@ sidebar_position: 2
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата создания темы |
| IDЧата | --forum | Строка, Число | ID чата создания темы |
| Заголовок | --title | Строка | Заголовок темы |
| IDИконки | --icon | Строка | См. ПолучитьСписокИконокАватаров |
@ -21,7 +21,10 @@ sidebar_position: 2
<br/>
:::tip
Метод в документации API: [createForumTopic](https://core.telegram.org/bots/api#createforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 6
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата темы |
| IDТемы | --topic | Строка,Число | ID темы |
| IDЧата | --forum | Строка, Число | ID чата темы |
| IDТемы | --topic | Строка, Число | ID темы |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [deleteForumTopic](https://core.telegram.org/bots/api#deleteforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,8 +12,8 @@ sidebar_position: 3
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата создания темы |
| IDТемы | --topic | Строка,Число | ID темы |
| IDЧата | --forum | Строка, Число | ID чата создания темы |
| IDТемы | --topic | Строка, Число | ID темы |
| Заголовок | --title | Строка | Новый заголовок |
| IDИконки | --icon | Строка | См. ПолучитьСписокИконокАватаров |
@ -22,7 +22,10 @@ sidebar_position: 3
<br/>
:::tip
Метод в документации API: [editForumTopic](https://core.telegram.org/bots/api#editforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,7 +12,7 @@ sidebar_position: 9
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата темы |
| IDЧата | --forum | Строка, Число | ID чата темы |
| Заголовок | --title | Строка | Новое имя главной темы |
@ -20,7 +20,10 @@ sidebar_position: 9
<br/>
:::tip
Метод в документации API: [editGeneralForumTopic](https://core.telegram.org/bots/api#editgeneralforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -18,7 +18,10 @@ sidebar_position: 1
<br/>
:::tip
Метод в документации API: [getForumTopicIconStickers](https://core.telegram.org/bots/api#getforumtopiciconstickers)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,14 +12,17 @@ sidebar_position: 7
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата темы |
| IDЧата | --forum | Строка, Число | ID чата темы |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [hideGeneralForumTopic](https://core.telegram.org/bots/api#hidegeneralforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,15 +12,18 @@ sidebar_position: 5
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата темы |
| IDТемы | --topic | Строка,Число | ID темы |
| IDЧата | --forum | Строка, Число | ID чата темы |
| IDТемы | --topic | Строка, Число | ID темы |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [reopenForumTopic](https://core.telegram.org/bots/api#reopenforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -12,14 +12,17 @@ sidebar_position: 8
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
| Токен | --token | Строка | Токен |
| IDЧата | --forum | Строка,Число | ID чата темы |
| IDЧата | --forum | Строка, Число | ID чата темы |
Возвращаемое значение: Соответствие Из КлючИЗначение - сериализованный JSON ответа от Telegram
<br/>
:::tip
Метод в документации API: [unhideGeneralForumTopic](https://core.telegram.org/bots/api#unhidegeneralforumtopic)
:::
<br/>
```bsl title="Пример кода"

View File

@ -7,7 +7,7 @@ sidebar_position: 6
`Функция ПереслатьФайл(Знач Токен, Знач IDЧата, Знач IDФайла, Знач Текст = "", Знач ИмяФайла = "", Знач Разметка = "MarkdownV2") Экспорт`
`Функция ПереслатьФайл(Знач Токен, Знач IDЧата, Знач IDФайла, Знач Текст = "", Знач Разметка = "MarkdownV2") Экспорт`
| Параметр | CLI опция | Тип | Назначение |
|-|-|-|-|
@ -15,7 +15,6 @@ sidebar_position: 6
| IDЧата | --chatid | Строка, Число | ID чата для отправки файла |
| IDФайла | --fileid | Строка, Число | ID Файла для отправки |
| Текст | --text | Строка | Подпись к файлу |
| ИмяФайла | --filename | Строка | Отображаемое имя файла |
| Разметка | --parsemod | Строка | Вид разметки для текста сообщения: MarkdownV2 или HTML |

View File

@ -35,7 +35,6 @@ sidebar_position: 3
Токен = "001.3501506236.091...";
IDЧата = "689203963@chat.agent";
IDЦитируемого = "7419291601358293295";
Текст = "Подпись к файлу";
Файл = "https://openyellow.neocities.org/test_data/song.m4a" ; // URL
ФайлПуть = ПолучитьИмяВременногоФайла("m4a"); // Путь

File diff suppressed because it is too large Load Diff

View File

@ -352,7 +352,6 @@ Function GetDeletedFiles(RemoteFiles, LocalPaths, LocalSubfolders)
EndFunction
//@skip-check module-unused-local-variable
Function MakeSynchronization(Token, ArrayOfDeletions, LocalPaths)
ErrorsArray = New Array;
@ -366,6 +365,7 @@ Function MakeSynchronization(Token, ArrayOfDeletions, LocalPaths)
Else
//@skip-check module-unused-local-variable
DeletingMessage = StrTemplate("Removed %1 unnecessary files", String(ArrayOfDeletions.Count()));
Message(DeletingMessage);
@ -386,6 +386,7 @@ Function MakeSynchronization(Token, ArrayOfDeletions, LocalPaths)
Else
//@skip-check module-unused-local-variable
Progress = "[" + OPI_Tools.NumberToString(Counter) + "/" + Total + "] ";
Message(Progress + LocalPath.Key + Chars.LF + Response["message"] + Chars.LF);

View File

@ -46,7 +46,10 @@
#Region DataRetrievalAndSettings
// Get bot information
// Executes the /getMe request, returning basic bot information: name, id, ability to add the bot to groups, etc..
// Executes the request, returning basic bot information: name, id, ability to add the bot to groups, etc..
//
// Note
// Method at API documentation: [getMe](@core.telegram.org/bots/api#getme)
//
// Parameters:
// Token - String - Bot token - token
@ -65,7 +68,10 @@ Function GetBotInformation(Val Token) Export
EndFunction
// Get updates
// Executes a request /getUpdates, returning information about bot events. Used in polling mode
// Executes a request, returning information about bot events. Used in polling mode
//
// Note
// Method at API documentation: [getUpdates](@core.telegram.org/bots/api#getupdates)
//
// Parameters:
// Token - String - Bot token - token
@ -92,6 +98,9 @@ EndFunction
// Set Webhook
// Set webhook URL for bot event handling in webhook mode
//
// Note
// Method at API documentation: [setWebhook](@core.telegram.org/bots/api#setwebhook)
//
// Parameters:
// Token - String - Bot token - token
// URL - String - Request handling address from Telegram (with https:) - url
@ -115,6 +124,9 @@ EndFunction
// Delete webhook
// Deletes the bot event handler URL for webhook operation
//
// Note
// Method at API documentation: [deleteWebhook](@core.telegram.org/bots/api#deletewebhook)
//
// Parameters:
// Token - String - Bot token - token
//
@ -134,6 +146,9 @@ EndFunction
// Download file
// Download file from Telegram servers
//
// Note
// Method at API documentation: [getFile](@core.telegram.org/bots/api#getfile)
//
// Parameters:
// Token - String - Token - token
// FileID - String - File ID for downloading - fileid
@ -253,11 +268,14 @@ EndFunction
// Send text message
// Sends a text message to a chat or channel
//
// Note
// Method at API documentation: [sendMessage](@core.telegram.org/bots/api#sendmessage)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Text - String - Message text - text
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
// Markup - String - Text processing type (HTML, Markdown, MarkdownV2) - parsemode
// RepliedID - String, Number - Reply to message ID - reply
//
@ -296,12 +314,15 @@ EndFunction
// Send image
// Sends an image to a chat or channel
//
// Note
// Method at API documentation: [sendPhoto](@core.telegram.org/bots/api#sendphoto)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Text - String - Message text - text
// Image - BinaryData,String - Image file - picture
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// Image - BinaryData, String - Image file - picture
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
// Markup - String - Text processing type (HTML, Markdown, MarkdownV2) - parsemode
//
// Returns:
@ -320,12 +341,15 @@ EndFunction
// Send video
// Sends a video to a chat or channel
//
// Note
// Method at API documentation: [sendVideo](@core.telegram.org/bots/api#sendvideo)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Text - String - Message text - text
// Video - BinaryData,String - Video file - video
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// Video - BinaryData, String - Video file - video
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
// Markup - String - Text processing type (HTML, Markdown, MarkdownV2) - parsemode
//
// Returns:
@ -344,12 +368,15 @@ EndFunction
// Send audio
// Sends an audio file to a chat or channel
//
// Note
// Method at API documentation: [sendAudio](@core.telegram.org/bots/api#sendaudio)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Text - String - Message text - text
// Audio - BinaryData,String - Audio file - audio
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// Audio - BinaryData, String - Audio file - audio
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
// Markup - String - Text processing type (HTML, Markdown, MarkdownV2) - parsemode
//
// Returns:
@ -368,12 +395,15 @@ EndFunction
// Send document
// Sends a document to a chat or channel
//
// Note
// Method at API documentation: [sendDocument](@core.telegram.org/bots/api#senddocument)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Text - String - Message text - text
// Document - BinaryData,String - Document file - doc
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// Document - BinaryData, String - Document file - doc
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
// Markup - String - Text processing type (HTML, Markdown, MarkdownV2) - parsemode
// FileName - String - Custom displayed file name with extension, if necessary - filename
//
@ -394,12 +424,15 @@ EndFunction
// Send GIF
// Sends a GIF to a chat or channel
//
// Note
// Method at API documentation: [sendAnimation](@core.telegram.org/bots/api#sendanimation)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Text - String - Message text - text
// GIF - BinaryData,String - GIF file - gif
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// GIF - BinaryData, String - GIF file - gif
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
// Markup - String - Text processing type (HTML, Markdown, MarkdownV2) - parsemode
//
// Returns:
@ -419,14 +452,14 @@ EndFunction
// Sends a set of files to a chat or channel. Media types: audio, document, photo, video
//
// Note
// Map: Key - File, Value - media type
// Method at API documentation: [sendMediaGroup](@core.telegram.org/bots/api#sendmediagroup)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Text - String - Message text - text
// FileMapping - Map of String - File collection - media - File JSON or path to .json
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// FileMapping - Map of KeyAndValue - File collection: Key > File, Value > Media Type - media
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
// Markup - String - Text processing type (HTML, Markdown, MarkdownV2) - parsemode
//
// Returns:
@ -472,12 +505,15 @@ EndFunction
// Send location
// Sends location by geographic latitude and longitude to a chat or channel
//
// Note
// Method at API documentation: [sendLocation](@core.telegram.org/bots/api#sendlocation)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Latitude - String, Number - Geographic latitude - lat
// Longitude - String, Number - Geographic longitude - long
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
//
// Returns:
// Map Of KeyAndValue - serialized JSON response from Telegram
@ -506,13 +542,16 @@ EndFunction
// Send contact
// Sends a contact with name and phone number
//
// Note
// Method at API documentation: [sendContact](@core.telegram.org/bots/api#sendcontact)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Name - String - Contact name - name
// LastName - String - Contact last name - surname
// Phone - String - Contact phone number - phone
// Keyboard - String - See GenerateKeyboardFromArray - keyboard - Keyboard JSON or path to .json
// Keyboard - String - Keyboard. See FormKeyboardFromButtonArray - keyboard
//
// Returns:
// Map Of KeyAndValue - serialized JSON response from Telegram
@ -542,12 +581,15 @@ EndFunction
// Send poll
// Sends a poll with answer options
//
// Note
// Method at API documentation: [sendPoll](@core.telegram.org/bots/api#sendpoll)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
// Question - String - Poll question - question
// AnswersArray - Array of String - Array of answer options - options
// Anonymous - Boolean - Poll anonymity - anonymous
// Anonymous - Boolean - Survey anonymity flag - anonymous
//
// Returns:
// Map Of KeyAndValue - serialized JSON response from Telegram
@ -578,6 +620,9 @@ EndFunction
// Forward message
// Forwards a message between chats or within a chat
//
// Note
// Method at API documentation: [forwardMessage](@core.telegram.org/bots/api#forwardmessage)
//
// Parameters:
// Token - String - Bot token - token
// OriginalID - String, Number - Original message ID - message
@ -610,6 +655,9 @@ EndFunction
// Generate keyboard from array of buttons
// Generates a simple JSON keyboard from an array of buttons for a message or bottom panel
//
// Note
// About keyboards in the API documentation: [InlineKeyboardMarkup](@core.telegram.org/bots/api#inlinekeyboardmarkup)
//
// Parameters:
// ButtonArray - Array of String - Array of buttons - buttons
// UnderMessage - Boolean - Keyboard under the message or on the bottom panel - under
@ -650,6 +698,9 @@ EndFunction
// Ban
// Bans a user in the selected chat
//
// Note
// Method at API documentation: [banChatMember](@core.telegram.org/bots/api#banchatmember)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
@ -678,6 +729,9 @@ EndFunction
// Unban
// Unbans a previously banned user
//
// Note
// Method at API documentation: [unbanChatMember](@core.telegram.org/bots/api#unbanchatmember)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
@ -707,6 +761,9 @@ EndFunction
// Create invitation link
// Creates a link for joining a closed chat
//
// Note
// Method at API documentation: [createChatInviteLink](@core.telegram.org/bots/api#createchatinvitelink)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID or ChatID*TopicID - chat
@ -743,6 +800,9 @@ EndFunction
// Pin message
// Pins a message in the chat header
//
// Note
// Method at API documentation: [pinChatMessage](@core.telegram.org/bots/api#pinchatmessage)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Target chat ID - chat
@ -772,6 +832,9 @@ EndFunction
// Unpin message
// Unpins a message in the chat header
//
// Note
// Method at API documentation: [unpinChatMessage](@core.telegram.org/bots/api#unpinchatmessage)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID - chat
@ -800,6 +863,9 @@ EndFunction
// Get participant count
// Gets the total number of chat participants
//
// Note
// Method at API documentation: [getChatMemberCount](@core.telegram.org/bots/api#getchatmembercount)
//
// Parameters:
// Token - String - Bot token - token
// ChatID - String, Number - Target chat ID - chat
@ -825,6 +891,9 @@ EndFunction
// Delete message
// Delete message from chat or channel
//
// Note
// Method at API documentation: [deleteMessage](@core.telegram.org/bots/api#deletemessage)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Target chat ID - chat
@ -854,6 +923,9 @@ EndFunction
// Get avatar icon list
// Gets the mapping of Emoji IDs for setting as forum theme icons
//
// Note
// Method at API documentation: [getForumTopicIconStickers](@core.telegram.org/bots/api#getforumtopiciconstickers)
//
// Parameters:
// Token - String - Token - token
//
@ -885,6 +957,9 @@ EndFunction
// Create forum thread
// Creates a new thread in the group with theme functionality enabled
//
// Note
// Method at API documentation: [createForumTopic](@core.telegram.org/bots/api#createforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread creation chat ID - forum
@ -902,6 +977,9 @@ EndFunction
// Edit forum thread
// Creates a new thread in the group with theme functionality enabled
//
// Note
// Method at API documentation: [editForumTopic](@core.telegram.org/bots/api#editforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread creation chat ID - forum
@ -923,6 +1001,9 @@ EndFunction
// Close forum thread
// Closes the thread for new messages
//
// Note
// Method at API documentation: [closeForumTopic](@core.telegram.org/bots/api#closeforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread chat ID - forum
@ -939,6 +1020,9 @@ EndFunction
// Open forum thread
// Reopens a previously closed forum thread
//
// Note
// Method at API documentation: [reopenForumTopic](@core.telegram.org/bots/api#reopenforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread chat ID - forum
@ -955,6 +1039,9 @@ EndFunction
// Delete forum thread
// Deletes a forum thread
//
// Note
// Method at API documentation: [deleteForumTopic](@core.telegram.org/bots/api#deleteforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread chat ID - forum
@ -971,6 +1058,9 @@ EndFunction
// Hide main forum thread
// Hides the main forum thread
//
// Note
// Method at API documentation: [hideGeneralForumTopic](@core.telegram.org/bots/api#hidegeneralforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread chat ID - forum
@ -986,6 +1076,9 @@ EndFunction
// Show main forum thread
// Shows a previously hidden main forum thread
//
// Note
// Method at API documentation: [unhideGeneralForumTopic](@core.telegram.org/bots/api#unhidegeneralforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread chat ID - forum
@ -1001,6 +1094,9 @@ EndFunction
// Edit main forum thread name
// Edits the name of the main forum thread
//
// Note
// Method at API documentation: [editGeneralForumTopic](@core.telegram.org/bots/api#editgeneralforumtopic)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread chat ID - forum
@ -1027,6 +1123,9 @@ EndFunction
// Clear thread's pinned messages list
// Clears the list of pinned messages in the forum thread
//
// Note
// Method at API documentation: [unpinAllForumTopicMessages](@core.telegram.org/bots/api#unpinallforumtopicmessages)
//
// Parameters:
// Token - String - Token - token
// ChatID - String, Number - Thread chat ID - forum

View File

@ -215,8 +215,13 @@ Function CreateCustomTweet(Val Text = ""
EndIf;
EndIf;
Authorization = CreateAuthorizationHeaderV1(Parameters_, New Structure, "POST", URL);
Response = OPI_Tools.Post(URL, Fields, Authorization);
If ValueIsFilled(Fields["media"]) Then
Authorization = CreateAuthorizationHeaderV1(Parameters_, New Structure, "POST", URL);
Else
Authorization = CreateAuthorizationHeaderV2(Parameters_);
EndIf;
Response = OPI_Tools.Post(URL, Fields, Authorization);
Return Response;

Some files were not shown because too many files have changed in this diff Show More