支持单对单,聊天室等场景
请求连接ws://127.0.0.1/imi/{user_id}
//加入聊天室
http://127.0.0.1/member/add/room
请求POST参数
{
“room_id”: “1”,
“user_id”: “4”
}
//发送信息
http://127.0.0.1/send/msg
{
“id”: “a001”,
“app_key”: “c-x”,
“cmd”: “text”,
“type”: “group”,
“send_user”: {
“id”: “1”,
“avatar”: “images/xxx.png”,
“nickname”: “人类”
},
“to_user”: {
“id”: “1”,
“avatar”: “images/xxx.png”,
“name”: “地球”
},
“data”: “您好”,
“notification”: {
“title”: “新的消息”,
“body”: “您好”
}
}