使用xmpppy庫連接和驗證Jabber服務器後,在哪裏可以找到完整的JID值? 我需要完整的JID來調用服務器的後續Iq。指定以下錯誤裸JID([email protected])結果: If set, the 'from' attribute must be set to the user's full JID 我已經通過online API閱讀並看了一些源代碼,但仍無法找到它。 全JID看起
連接到具有XMPPPY XMPP服務器很簡單。 from xmpp.client import Client as XMPPClient
self.xmppClient = XMPPClient("jabber.foo.com")
if not self.xmppClient.connect(server="localhost"):
raise IOError('Cannot co