xmpp:2 个客户使用同一帐户
是否可以使用同一帐户 2 个或更多客户端连接到同一服务器(ejabberd)? 如果是 - 如何使用 pyxmpp 执行此操作?
is it possible to connect to the same server (ejabberd) with same account 2 or more clients?
if yes - how to do this with pyxmpp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
完全可以从多个客户端连接到 XMPP 帐户(除非在服务器上明确关闭)。他们只需要使他们的
resource
字段不同即可。类似于(未测试):第一个客户端:
第二个客户端:
此外,某些服务器(fe gmail)会自动为您的连接提供独特的资源。有些则不然。
It is perfectly possible to connect to an XMPP account from multiple clients (unless this is explicitly turned off on the server). They just need to make their
resource
field distinct. Something like (not tested):First client:
Second client:
Also, some servers (f.e. gmail) will give your connections unique resources automatically. Some not.