有人可以帮我自动接受Skype4Py的朋友请求吗? 现在我正在使用
def UserAuthorizationRequestReceived(user):
user.IsAuthorized = true
和
skype.UserAuthorizationRequestReceived = UserAuthorizationRequestReceived
但它似乎没有起作用 谢谢!
答案 0 :(得分:0)
来自the documentation for Skype4Py::utils::EventHandlingBase
:
- 醇>
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
您需要将功能附加到skype.OnUserAuthorizationRequestReceived
。
希望您正在进行一些检查,以确保您的应用程序不会成为垃圾邮件攻击的目标,因为您接受所有请求。