我正在使用 Xabber 开源项目并且能够创建一个新组,但它总是说:这个房间被锁定,直到配置被确认。我尝试设置默认配置,但它抛出异常:401 未授权。究竟是什么问题。
final MultiUserChat multiUserChat;
try {
multiUserChat = new MultiUserChat(xmppConnection, room);
// CHANAKYA: set default config for the MUC
// Send an empty room configuration form which indicates that we want
// an instant room
try {
multiUserChat.sendConfigurationForm(new Form(Form.TYPE_SUBMIT));
} catch (XMPPException e) {
e.printStackTrace();
}