我想在我的Android项目中使用TD Java API

方法“getchats”返回聊天列表。我不知道如何使用这种方法

getchats具有3个参数:
offset_order,offset_chat_id,限制

限制是服务器发送到我的应用的最大聊天次数。
什么是offset_order和offset_chat_id?

我只能找到有关此方法的简短文档

Returns list of chats in the right order, chats are sorted by (order, chat_id) in decreasing order. For example, to get list of chats from the beginning, the offset_order should be equal 2^63 - 1
@offset_order Chat order to return chats from
@offset_chat_id Chat identifier to return chats from
@limit Maximum number of chats to be returned

最佳答案

(由Google翻译)answer来自官方技术支持:

关于java - 如何在tdlib中使用getChats,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37782348/

10-09 06:17