跳到主要内容

单聊消息回执

发送已读回执

当 A 给 B 发送一条消息,B 用户调用发送阅读回执接口之后,A 用户可在回执监听中收到已读通知。

方法

int sendPrivateReadReceiptMessage(
string targetId,
string channelId,
int timestamp
)

参数说明

参数类型说明
targetIdstring接收回执方的用户 ID
channelIdstring频道 ID,仅支持超级群使用,其他会话类型传 null 即可。
timestampint会话中已读的最后一条消息的发送时间戳,即 message 的 sentTime

返回值

返回值描述
int当次接口操作状态码,并不代表最终操作结果,状态码详细信息

代码示例

int code = engine.sendPrivateReadReceiptMessage(
targetId,
channelId,
timestamp
);

回调方法

  • onPrivateReadReceiptMessageSent

    接口调用结果的监听

delegate void OnPrivateReadReceiptMessageSentDelegate(int code,
string targetId,
string channelId,
long timestamp);

OnPrivateReadReceiptMessageSentDelegate onPrivateReadReceiptMessageSent;

参数说明

参数名参数类型描述
Codeint接口回调的状态码,0 代表成功,非 0 代表出现异常
targetIdstring调用接口时传入的 ID
channelIdstring调用接口时传入的频道 ID,
timestampint调用接口时传入的时间戳

代码示例

engine.onPrivateReadReceiptMessageSent = delegate (
int code,
string targetId,
string channelId,
int timestamp
)
{

};

设置消息回执监听器

设置消息回执监听器, 用于接收消息回执。

方法

delegate void OnPrivateReadReceiptReceivedDelegate(string targetId,
string channelId,
long timestamp);

OnPrivateReadReceiptReceivedDelegate onPrivateReadReceiptReceived;

参数说明

参数类型说明
targetIdstring发送回执的会话 ID
channelIdstring频道 ID
timestampint已读的最后一条消息的发送时间戳

代码示例

engine.onPrivateReadReceiptReceived = delegate(
string targetId,
string channelId,
int timestamp
)
{

}