使用Python访问Fastmail CalDAV

时间:2018-10-28 08:41:37

标签: python caldav

我正在尝试通过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)。

我想念什么?

1 个答案:

答案 0 :(得分:0)

正确的URL为https://caldav.fastmail.com/dav。从服务器和端口文档中看不出来。