在添加好友对方同意之前的回调
功能说明
App 后台可以通过该回调实时查看用户的加好友回应请求,包括:
- 实时查看用户的加好友回应请求。
- 拦截恶意加好友回应请求。
注意事项
- 为启用回调,必须配置回调 URL,并开启本条回调协议对应的开关。配置方法详见 回调说明 文档。
- 回调的方向是 OpenIM Server 向 App 后台发起 HTTP/HTTPS POST 请求。
- APP 业务服务端需在超时时间内响应此请求。
可能触发该回调的场景
- App 用户通过客户端发起加好友回应请求,同意添加好友。
回调发生时机
- OpenIM Server 收到来自 App 的同意加好友回应请求后
接口说明
请求 URL 示例
此处CallbackCommand
为:callbackBeforeAddFriendAgreeCommand
{WEBHOOK_ADDRESS}/callbackBeforeAddFriendAgreeCommand?contenttype=json
请求包示例
{
"callbackCommand": "callbackBeforeAddFriendAgreeCommand",
"fromUserID": "user123",
"toUserID": "user456",
"handleMsg": "Let's be friends!",
"handleResult": 1
}
请求包字段说明
对象 | 类型 | 描述 |
---|---|---|
callbackCommand | string | 回调命令,这里是添加好友之前的回调 |
fromUserID | string | 发起好友请求的用户ID |
toUserID | string | 接收好友请求的用户ID |
handleMsg | string | 好友请求处理的附加消息 |
handleResult | int32 | 好友请求处理的结果 |
应答包示例
允许添加
允许用户添加好友。
{
"actionCode": 0,
"errCode": 0,
"errMsg": "",
"errDlt": "",
"nextCode": 1
}
应答包字段说明
字段 | 值 | 说明 |
---|---|---|
actionCode | 0 | 表示业务系统的回调是否正确执行。0 表示操作成功。 |
errCode | 0 | 表示自定义错误码,此处填0代表忽略回调结果。 |
errMsg | "An error message" | 自定义错误码对应的简单错误信息。 |
errDlt | "Detailed error information" | 自定义错误码对应的详细错误信息。 |
nextCode | 1 | 下一步执行指令,1 表示拒绝继续执行,actionCode等于0 时设置。 |