You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2026-05-22 10:05:29 +02:00
Правки доков
This commit is contained in:
@@ -24,6 +24,10 @@ Method at API documentation: [GET /self/get](https://teams.vk.com/botapi/#/self/
|
||||
<br/>
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
Token = "001.3501506236.091...";
|
||||
Result = OPI_VKTeams.CheckToken(Token);
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -26,6 +26,24 @@ Method at API documentation: [GET /events/get](https://teams.vk.com/botapi/#/eve
|
||||
<br/>
|
||||
|
||||
|
||||
```bsl title="Code example"
|
||||
Token = "001.3501506236.091...";
|
||||
LastID = 0;
|
||||
|
||||
For N = 1 To 5 Do // In real work - endless loop
|
||||
|
||||
Result = OPI_VKTeams.GetEvents(Token, LastID, 3);
|
||||
|
||||
Events = Result["events"];
|
||||
|
||||
// Event handling...
|
||||
|
||||
If Not Events.Count() = 0 Then
|
||||
LastID = Events[Events.UBound()]["eventId"];
|
||||
EndIf;
|
||||
|
||||
EndDo;
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user