我正在尝试通过Python访问我的Fastmail日历。我正在使用this answer建议的caldav
模块。这是我的代码:
def main():
auth = HTTPBasicAuth(username='mail@domain.com', password='myapplicationpassword')
client = caldav.DAVClient('https://caldav.fastmail.com', auth=auth)
try:
client.principal()
except Exception as e:
print(e)
client.principal()
引发了一个异常:
404 Not Found
b'<html>\r\n<head><title>404 Not Found</title></head>\r\n<body bgcolor="white">\r\n<center><h1>404 Not Found</h1></center>\r\n<hr><center>nginx</center>\r\n</body>\r\n</html>\r\n'
我还尝试了client = caldav.DAVClient('https://caldav.fastmail.com', username='mail@domain.com', password='myapplicationpassword')
,并获得了相同的结果。
最后,我看了一下caldav example using iCloud,并尝试通过fastmail重现同样的想法。我遇到了同样的问题(principal_response
的状态代码为404)。
我想念什么?
答案 0 :(得分:0)
正确的URL为https://caldav.fastmail.com/dav
。从服务器和端口文档中看不出来。