gpt4 book ai didi

javascript - 使用 Javascript 连接到 XMPP 服务器

转载 作者:行者123 更新时间:2023-11-30 16:11:47 25 4
gpt4 key购买 nike

所以,从现在起这两天我一直在努力开发这个。问题是:我有一台使用 XMPP 协议(protocol)处理聊天的服务器。我必须连接到它,但我正在开发 Phonegap/Cordova 应用程序,但没有相应的插件。

我尝试使用 Strophe.js 连接到服务器,但没有成功。服务器要求我使用普通身份验证,并且已经为我提供了一个编码密码。

示例代码:

$scope.onConnect = function(status){
if (status == Strophe.Status.CONNECTING) {
$scope.connStatus = 'Strophe is connecting.';
} else if (status == Strophe.Status.CONNFAIL) {
$scope.connStatus = 'Strophe failed to connect.';
} else if (status == Strophe.Status.DISCONNECTING) {
$scope.connStatus = 'Strophe is disconnecting.';
} else if (status == Strophe.Status.DISCONNECTED) {
$scope.connStatus = 'Strophe is disconnected.';
} else if (status == Strophe.Status.CONNECTED) {
$scope.connStatus = 'Strophe is connected.';
}
}

$scope.chatConnect = function(ID, xmppToken){
connection = new Strophe.Connection('chat.server.com');
Strophe.SASLPlain.priority = 99;
Strophe.SASLAnonymous.test = function() {
return false;
};
Strophe.SASLMD5.test = function() {
return false;
};
Strophe.SASLSHA1.test = function() {
return false;
};
connection.rawInput = function(data){alert("Input: " + data);};
connection.rawOutput = function(data){alert("Output: " + data);};
connection.connect(ID, xmppToken, $scope.onConnect);
}

我也乐于接受新图书馆的建议!提前致谢。

最佳答案

这是部署在 Plunker 上的 Ionic 聊天应用程序的一个非常简单的示例(需要部署为本地主机的 XMPP 服务器):http://plnkr.co/edit/i3at7UvgqHaiL8NzN2k3

因此在您的 Controller 中,代码可能是:

$scope.usr = {username: 'hello@test.com', password: 'pippo', connected: false};

var server = 'test.com'; // adapt to your server config (domain)
var xmpp_server = 'http://127.0.0.1:7070/http-bind/';
var connection = null;

$scope.connect = function (usr) {
connection = new Strophe.Connection(xmpp_server);
connection.connect(usr.username, usr.password, onConnect);
}

其他带有 Strophe.js 用法示例的 Plunkers:

http://plnkr.co/edit/EhQHDsYpDhrECmaaIlZO

http://plnkr.co/edit/F8cbsBZQUPiZ0W1v0O89

关于javascript - 使用 Javascript 连接到 XMPP 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36124921/

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