我在我的应用程序中使用 Quickblox iOS SDK 进行即时消息传递。当用户登录时,我检索消息列表。我正在尝试检索最后 N 条消息。我使用本文档中指定的扩展请求参数: http://quickblox.com/developers/SimpleSample-chat_users-ios#List_chat_messages
此调用检索前 100 条消息,而不是最近的消息。 我还检查了从这里发送的参数列表: http://quickblox.com/developers/Chat#Retrieve_messages
使用限制和排序参数的组合仍然不能得到想要的结果。
//试试这个:
NSMutableDictionary *extendedRequest = [NSMutableDictionary new];
NSDate *now = [NSDate date];
extendedRequest[@"date_sent[lte]"]= @([now timeIntervalSince1970]);
extendedRequest[@"sort_desc"]= @"date_sent";
//get the most recent 50 messages
extendedRequest[@"limit"] = @(50);
[QBChat messagesWithDialogID:self.dialog.ID extendedRequest:extendedRequest delegate:self];
关于ios - Quickblox 消息获取最后 n 条消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26981259/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |