mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-10 11:10:31 +02:00
19 lines
380 B
Plaintext
19 lines
380 B
Plaintext
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;
|