接受好友申请。
connection.acceptContactInvite('user1')
添加好友。
connection.addContact('user1', 'I am Bob')
添加消息 Reaction。
connection.addReaction({messageId: 'messageId', reaction: 'reaction'})
Adds a reaction to the message.
connection.addReaction({messageId: 'messageId', action: 'action'})
在消息上添加的 Reaction,最大长度为 128 字符。
添加联系人至黑名单。
connection.addUsersToBlocklist({name: 'user1'})
Declines a friend request.
connection.declineContactInvite('user1')
拒绝好友申请。
connection.declineContactInvite('user1')
删除指定好友。
connection.deleteContact('user1')
Gets the conversation list and the latest message under the conversation.
connection.getConversationlist()
会话类型:
singleChat
:单聊;groupChat
:群聊。删除会话时是否同时删除服务端漫游消息。
true
:是;false
:否。删除消息的 Reaction。
connection.deleteReaction({messageId: 'messageId', reaction: 'reaction'})
消息 ID。
要删除的 Reaction。
Whether to delete server roaming messages during conversation deletion.
true
: Yes;false
: No.Gets the blocklist.
connection.getBlocklist()
获取联系人列表。
connection.getContacts()
获取会话列表以及会话下的最新一条消息。
connection.getConversationlist()
获取对话历史消息。
connection.getHistoryMessages({targetId:'user1',chatType:'groupChat', pageSize: 20})
会话类型(SDK V4.0):
singleChat
:单聊;groupChat
:群组聊天;chatRoom
:聊天室聊天。单聊
。起始消息 ID,默认值为 -1,即从最新消息开始。
每次获取的消息条数。默认值为 20,最大值是50。
是否选择正向拉取历史消息(从最老向最新拉取)。
up
:向上搜索;down
:向下搜索;up
。对方的用户 ID 或者群组 ID。
获取 Reaction 详情。
getReactionDetail({messageId: 'messageId', reaction: 'reaction', cursor: '', pageSize: 20})
游标。如果数据还有下一页,该方法的返回值会包含此字段,传递此字段可获取下一页的数据,为 null 时获取第一页数据。
消息 ID。
每页返回的数量。默认为 20,最大为 100。
要获取的 Reaction。
获取消息的 Reaction 列表。
connection.getReactionlist({chatType: 'chatType', messageId: 'messageId'})
会话类型:
群组 ID。
消息 ID。
Removes contacts from the blocklist.
connection.removeUserFromBlocklist({name: 'user1'})
会话类型(SDK V4.0):
singleChat
:单聊;groupChat
:群组聊天;chatRoom
:聊天室聊天。The chat type for SDK V4.0:
singleChat
: one-to-one chat;groupchat
: group chat;chatroom
: chat room.需要撤回的消息 ID。
消息的接收方。
会话类型(SDK V3.0):
chat
:单聊;groupchat
:群组聊天;chatroom
:聊天室聊天。将联系人从黑名单中移除。
connection.removeUserFromBlocklist({name: 'user1'})
Adds a contact to the blocklist.
connection.addUsersToBlocklist({name: 'user1'})
举报消息。
reportMessage()
修改收到推送消息时显示的昵称。该昵称在用户注册时设置。不属于用户属性。
connection.updateCurrentUserNick('Tom')
The app ID for the push service, which is the senderID for Firebase Cloud Messaging (FCM) and "appId+#+AppKey" for the vivo push service.
Gets the contact list.
connection.getContacts()
推送 token,用于标识相同的设备。用户可自定义该推送 token。
推送服务的 App ID,对于 Firebase Cloud Messaging (FCM) 是 senderId, 对于 VIVO 推送服务是 “appId+#+AppKey”。
Contact contains the APIs for contact-related operations.