gpt4 book ai didi

javascript - 使用 Strophe.js 自定义 XMPP 消息

转载 作者:数据小太阳 更新时间:2023-10-29 06:01:08 24 4
gpt4 key购买 nike

如何使用 Strophe JS 通过 XMPP 发送自定义消息图书馆?

我知道使用 $msg( ... ); 我可以创建一个聊天消息元素并 connection.send(m); 通过 XMPP 连接发送它。

我需要一种发送消息的方式,不是为了聊天,而是为了“命令”(或其他目的)。

最佳答案

使用 Strophe.js 你可以简单地做:

function sendCustomMessage(to, from, body, field1, field2) {
var m = $msg({to: to, from: from, type: 'chat'}).c("body").t(body);
// custom data
m.up().c("data", {xmlns: 'my-custom-data-ns', field1: field1, field2: field2});
connection.send(m);
}

关于javascript - 使用 Strophe.js 自定义 XMPP 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35177249/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com