我无法使用 strophe 向其他 xmpp 用户发送简单的 json 消息。创建消息的命令:
var json_stringified_msg = '{"type":"ola"}';
var reply = $msg({to: this.m_user, from: this.jid_connection, type: 'chat'}).c("body").t(json_stringified_msg);
connection.send(reply.tree());
问题是在另一端,客户端在聊天中收到: {"ACTION"quot;CHANGE_MODE", "MODE"quot;KEYBOARD"}
我不能从另一边逃脱,因为它是一个封闭的客户。
如何将json消息准确发送到另一端?
谢谢你的帮助。
此致