I’ve successfully sent message to individual user. How can I send message to a room? I’m trying the following code:
cl.send(xmpp.Message('99999_myroom@chat.hipchat.com', 'test message', typ='groupchat'))
Also, I’m sending this message without sending presence.
To send a message to a room, you must join the room first. From XEP-0045, section 7.2.2:
Then your message should work.