A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Solution for Nextcloud Calender Integration
-
Re: Default calendar and Nextcloud CalDav
Hello together,
I have tried different ways and now found one that is not quite perfect but works.
Unfortunately, the NC user and password must be used in plain text, so I have generated for this purpose a special user on the NC that has no permissions but gets my calendar shared by me. This is certainly not the most elegant solution but it works and is relatively “safe”.
Here is the copy of my working ```
code_text{ module: "calendar", header: "Calender", position: "top_left", config: { calendars: [ { symbol: "calendar", url: "https://<USERNAME>:<PASSWORD>@<EXAMPLEnextcloud.org>/remote.php/dav/calendars/<USERNAME>/<NAMEofCALENDER>/?export", auth: { user: "USERNAME", pass: "PASSWORD", method: "basic", } }, ], } },