当前没有为特定用户或组提供最新消息的方法。但是您可以获取用户发起聊天的所有联系人和群组的最新消息,或者获取特定联系人或群组的所有消息。为此,插件中有一个函数 - getConversationList()。
>>获取特定联系人/组的对话列表:
按照以下步骤获取特定联系人/组的消息:
1)创建一个messageListModel对象:
var messageListModel = {
'startTime' : null, //start time
'endTime' : null, //end time
'contactId' : <your-contact-id>, //(this is string) pass contact id to get the message list for that contact
'searchString' : null, // pass the search string to get the latest messages that match the search string
'channelKey' : <your-group-id>, //(this is number) pass the channel key to get the message list for that channel
'conversationId' : null,
'isScroll' : false, //is scroll will be false if you want to get all list of chats
'isSkipRead' : false,
};
2) 将此对象传递给 getConversationList() 函数:
applozic.getConversationList(messageListModel, (conversationList)=> {
console.log(JSON.stringify(conversationList))
}, ()=>{});
您将在 onSuccess 回调函数中收到一个 conversationList。
3)会话对象有三个对象:
a) 消息 - 给特定联系人/组的消息
b) Contact - 如果消息来自组,则为 null
c) Channel - 如果消息是针对联系人的,则为 null
因此,在您的情况下,您将收到与您在 messageListModel 对象中传递的相同联系人/频道的对话列表。列表中的最后一个对话就是您要查找的内容。
>>>获取所有联系人/组的最新消息:
您还可以获得用户发起聊天的所有联系人/组的最新消息。就像whatsapp主屏幕一样。
1)创建一个messageListModel对象:
var messageListModel = {
'startTime' : null, //start time
'endTime' : null, //end time
'contactId' : null, //pass contact id to get the message list for that contact
'searchString' : null, // pass the search string to get the latest messages that match the search string
'channelKey' : null, // pass the channel key to get the message list for that channel
'conversationId' : null,
'isScroll' : false, //is scroll will be false if you want to get all list of chats
'isSkipRead' : false,
};
2) 将此对象传递给 getConversationList() 函数:
applozic.getConversationList(messageListModel, (conversationList)=> {
console.log(JSON.stringify(conversationList))
}, ()=>{});
您将在 onSuccess 回调函数中收到一个 conversationList。
3)会话对象有三个对象:
a) 消息 - 联系人/组的最新消息
b) Contact - 如果消息来自组,则为 null
c) Channel - 如果消息是针对联系人的,则为 null
您可以在此列表中找到联系人/频道并获取相关消息。对话列表按消息创建时间的降序排列。就像您在 whatsapp 主屏幕中看到的一样。最新消息位于顶部。因此,如果您的联系人不在前 60 个对话中,您需要再次拨打电话,但这次在消息列表模型对象中传递最新消息的 createdAtTime,如下所示,这将为您提供下一批 60 个对话:
var messageListModel = {
'startTime' : null, //start time
'endTime' : null, //end time
'contactId' : null, //pass contact id to get the message list for that contact
'searchString' : null, // pass the search string to get the latest messages that match the search string
'channelKey' : null, // pass the channel key to get the message list for that channel
'conversationId' : null,
'isScroll' : false, //is scroll will be false if you want to get all list of chats
'isSkipRead' : false,
'createdAtTime' : conversationList[conversationList.length - 1].message.createdAtTime;
};
如何获取消息的时间:
要获取消息的时间,您可以执行以下操作:
conversationList[index].message.createdAtTime;
为方便起见,以下是上述使用对象的所有属性。
对话对象的属性:
interface Conversation{
message : Message;
contact : Contact;
channel : Channel;
}
消息对象的属性:
interface Message{
createdAtTime : number;
to : string;
message : string;
key : string;
deviceKey : string;
userKey : string;
emailIds : string;
shared : boolean;
sent : boolean;
delivered : boolean;
type : number;
storeOnDevice : boolean;
contactIds : string;
groupId : number;
scheduledAt : number;
source : number;
timeToLive : number;
sentToServer : boolean;
fileMetaKey : string;
filePaths : string[];
pairedMessageKey : string;
sentMessageTimeAtServer : number;
canceled : boolean;
clientGroupId : string;
messageId : number;
read : boolean;
attDownloadInProgress : boolean;
applicationId : string;
conversationId : number;
topicId : string;
connected : boolean;
contentType : number;
status : number;
hidden : boolean;
replyMessage : number;
fileMeta : FileMeta;
metadata : Map<string,string>;
}
interface FileMeta{
key : string;
userKey : string;
blobKey : string;
name : string;
url : string;
size : number;
contentType : string;
thumbnailUrl : string;
createdAtTime : number;
}
接触对象的属性:
interface Contact{
firstName : string;
middleName : string;
lastName : string;
emailIdLists : string[];
contactNumberLists : string[];
phoneNumbers : Map<string, string>;
contactNumber : string;
formattedContactNumber : string;
contactId : number;
fullName : string;
userId : string;
imageURL : string;
localImageUrl : string;
emailId : string;
applicationId : string;
connected : boolean;
lastSeenAtTime : number;
checked : boolean;
unreadCount : number;
blocked : boolean;
blockedBy : boolean;
status : string;
userTypeId : number;
contactType : number;
deletedAtTime : number;
latestMessageAtTime : number;
}
Channel 对象的属性:
interface Channel{
key : number;
parentKey : number;
clientGroupId : string;
name : string;
adminKey : string;
type : number;
unreadCount : number;
userCount : number;
subGroupCount : number;
imageUrl : string;
notificationAfterTime : number;
localImageUri : string;
contacts : Contact[];
}