MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Noob1000
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    N
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 1
    • Groups 0

    Noob1000

    @Noob1000

    1
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Noob1000 Unfollow Follow

    Best posts made by Noob1000

    • 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",
                                                        }
                                                },
                                        ],
                                }
       
       
                        },
      posted in Troubleshooting
      N
      Noob1000

    Latest posts made by Noob1000

    • 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",
                                                        }
                                                },
                                        ],
                                }
       
       
                        },
      posted in Troubleshooting
      N
      Noob1000