在Skype4Py上接受好友请求

时间:2013-11-12 08:57:37

标签: python skype skype4py

有人可以帮我自动接受Skype4Py的朋友请求吗? 现在我正在使用

def UserAuthorizationRequestReceived(user):
    user.IsAuthorized = true

skype.UserAuthorizationRequestReceived = UserAuthorizationRequestReceived

但它似乎没有起作用 谢谢!

(文件:http://skype4py.sourceforge.net/doc/html/

1 个答案:

答案 0 :(得分:0)

来自the documentation for Skype4Py::utils::EventHandlingBase

  
      
  1. C {On ...}属性。

         

    此方法允许您将任何callables用作事件处理程序。只需将它们分配给C {On ...}    属性(其中“C {...}”是事件的名称)    感兴趣的。例如::

     import Skype4Py
    
     def user_status(Status):
         print 'The status of the user changed'
    
     skype = Skype4Py.Skype()
     skype.OnUserStatus = user_status
    
  2.   

您需要将功能附加到skype.OnUserAuthorizationRequestReceived

希望您正在进行一些检查,以确保您的应用程序不会成为垃圾邮件攻击的目标,因为您接受所有请求。