2010-02-15 72 views

回答

0

看起來像你想「授權」的請求。我假設你已經收到客戶的請求。在名冊類(xmpp.roster)中有一個「授權」方法。它發送「訂閱」數據包來接受名冊請求。這就是這個方法的樣子:

def Authorize(self,jid): 
    """ Authorise JID 'jid'. Works only if these JID requested auth previously. """ 
    self._owner.send(Presence(jid,'subscribed')) 

等等,這可能不是你所要求的。您是否嘗試處理聊天或名冊請求?看看他們稱爲xtalk.py的示例(小型)客戶端。我認爲你對xmpp_message方法感興趣。