bbb_app
bbb_app copied to clipboard
Request to provide send messages to websocket
Trouble with no response message from server
I am making an app using BBB server. Fortunately, I've found your repository and it's very helpful for me thanks. I fixed the outdated dependencies and test. The problem is the server does not response any message when the client send chat message, poll like that. The question is where do I find the source like send message parameters to the websocket? I think the sending type changed in BBB server update.
{ "msg": "method", "method": "sendGroupChatMsg", "params": [ msg.chatID ?? defaultChatID, { "color": 0, "correlationId": msgId, "sender": { "id": senderID, "name": _meetingInfo.fullUserName, }, "message": msg.content, }, ], }
The server does not return anything with this kind of parameter.