电报更新消耗
Telegram update consuming
我是 Telegram Bots API
的新手,所以我仍处于抽象阶段。
无论如何,我正在使用 Postman
测试一些 Telegram 方法。当我向服务器发送 getUpdates
请求时,它会向我发送所有更新,但问题是如果我再次发送 getUpdates
,我也会收到以前的更新。
那么有没有什么方法可以消耗传入的更新,以便服务器不再发送它们?
Telegram Bots API
非常紧凑,缺乏很好的解释。这就是我在这里问的原因。
引自 Telegram 的 Bots FAQ:
The getUpdates
method returns the earliest 100 unconfirmed updates. To confirm an update, use the offset parameter when calling getUpdates like this:
offset = update_id of last processed update + 1
All updates with update_id less than or equal to offset will be marked
as confirmed on the server and will no longer be returned.
我是 Telegram Bots API
的新手,所以我仍处于抽象阶段。
无论如何,我正在使用 Postman
测试一些 Telegram 方法。当我向服务器发送 getUpdates
请求时,它会向我发送所有更新,但问题是如果我再次发送 getUpdates
,我也会收到以前的更新。
那么有没有什么方法可以消耗传入的更新,以便服务器不再发送它们?
Telegram Bots API
非常紧凑,缺乏很好的解释。这就是我在这里问的原因。
引自 Telegram 的 Bots FAQ:
The
getUpdates
method returns the earliest 100 unconfirmed updates. To confirm an update, use the offset parameter when calling getUpdates like this:offset = update_id of last processed update + 1
All updates with update_id less than or equal to offset will be marked as confirmed on the server and will no longer be returned.