xmlrpclib、wsapi4plone - 检查用户名和密码
这是我的功能之一:
def connect():
c = xmlrpclib.ServerProxy('http://username:password@host',
allow_none=True,
)
return c
如何在返回 c
之前检查此方法中的用户名和密码是否正确?
Here is one of my functions:
def connect():
c = xmlrpclib.ServerProxy('http://username:password@host',
allow_none=True,
)
return c
How do I check if the username and password are correct in this method before returning c
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此技巧检查提供的凭据是否有效(前提是 plone 站点已正确安装 wsapi4plone):
因此相应的代码将是:
You can check if the provided credentials are valid by using this trick (provided that the plone site has wsapi4plone correctly installed):
So the corresponding code would be: