发送群消息前的回调
功能说明
App 后台可以通过该回调实时查看用户的群发消息,包括:
- 对群消息进行实时记录(例如记录日志,或者同步到其他系统)。
- 拦截用户在群内发言的请求。
注意事项
- 为启用回调,必须配置回调 URL,并开启本条回调协议对应的开关。配置方法详见 回调说明 文档。
- 回调的方向是 OpenIMServer 向 App 后台发起 HTTP/HTTPS POST 请求。
- APP 业务服务端需在超时时间内响应此请求。
可能触发该回调的场景
- App 用户通过客户端发送群消息。
- App 管理员通过 REST API 发送群组消息。
回调发生时机
- OpenIMServer 把群消息下发给群成员之前。
接口说明
请求 URL 示例
此处CallbackCommand
为:callbackBeforeSendGroupMsgCommand
{WEBHOOK_ADDRESS}/callbackBeforeSendGroupMsgCommand?contenttype=json
请求包示例
{
"sendID": "123456",
"callbackCommand": "callbackBeforeSendGroupMsgCommand",
"serverMsgID": "msg123",
"clientMsgID": "client123",
"operationID": "1646445464564",
"senderPlatformID": 1,
"senderNickname": "John",
"sessionType": 2,
"msgFrom": 1,
"contentType": 1,
"status": 0,
"sendTime": 1673048592000,
"createTime": 1673048592000,
"content": "Hello, this is a group message!",
"seq": 1,
"atUserList": ["user123", "user456"],
"faceURL": "http://example.com/user123.png",
"ex": "Extra data",
"groupID": "group567"
}
请求包字段说明
对象 | 类型 | 描述 |
---|---|---|
sendID | string | 发送的唯一标识符 |
callbackCommand | string | 回调命令,这里是发送群组消息之前的回调 |
serverMsgID | string | 服务器端消息ID |
clientMsgID | string | 客户端消息ID |
operationID | string | operationID用于全局链路追踪 |
senderPlatformID | int32 | 发送者的平台ID |
senderNickname | string | 发送者的昵称 |
sessionType | int32 | 会话类型 |
msgFrom | int32 | 消息来源,1表示来自用户,2表示来自群组 |
contentType | int32 | 消息类型,1表示文本消息 |
status | int32 | 消息状态 |
sendTime | int64 | 消息发送的时间戳(毫秒) |
createTime | int64 | 消息创建的时间戳(毫秒) |
content | string | 消息内容 |
seq | uint32 | 消息的序号 |
atUserList | string | 群成员ID列表 |
faceURL | string | 发送者的头像URL |
ex | string | 额外的数据字段 |
groupID | string | 群组ID |
应答包示例
允许发送
允许用户发送群组消息。
{
"actionCode": 0,
"errCode": 0,
"errMsg": "",
"errDlt": "",
"nextCode": 0
}
应答包字段说明
字段 | 值 | 说明 |
---|---|---|
actionCode | 0 | 表示业务系统的回调是否正确执行。0 表示操作成功。 |
errCode | 5001 | 表示自定义错误码,范围在5000-9999之间。在 actionCode 不等于0时设置;在 nextCode 等于1时设置。 |
errMsg | "An error message" | 自定义错误码对应的简单错误信息。 |
errDlt | "Detailed error information" | 自定义错误码对应的详细错误信息。 |
nextCode | 1 | 下一步执行指令,1 表示拒绝继续执行,actionCode 等于0 时设置。 |