本文介绍了无法使用python和xmpppy连接到gtalk的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当尝试连接到gtalk时,出现此错误:
When try connect to gtalk I get this error:
代码在这里: https://gist.github.com/1396074
推荐答案
请勿将(不正确的)服务器名称传递到第11行的cl.connect()
中.然后,SRV查找将进入_xmpp-client._tcp.gmail.com
(从JID中获取) ,应该可以.传递服务器仅用于配置错误的XMPP服务器.
Do not pass the (incorrect) server name into cl.connect()
on line 11. The SRV lookup will go to _xmpp-client._tcp.gmail.com
then (taken from the JID), which should work. Passing in a server is only used for incorrectly configured XMPP servers.
这篇关于无法使用python和xmpppy连接到gtalk的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!