所以我有一个名为test@jappix.com的xmpp帐户(用户名已更改)..我想要一些帮助来编写一个匿名登录到公共xmpp服务器(比如jappix)的脚本然后代码应该发送一个hello world发送到test@jappix.com的消息......我写了以下几行代码..但它似乎没有用......
var server = require("http").createServer();
var xmpp = require("node-xmpp");
var client = new xmpp.Client({jid: "jtest@lightwitch.org", password: "xxxxxx"});
client.on("online", function() {
client.send(new xmpp.Element("presence", {type: "chat"}));
client.send(new xmpp.Element("message", {to: "test@jappix.com", type: "chat"}).c("body").t("Testing"));
});
server.listen(5808);