Read the statement by Michael Teeuw here.
HTTPS and Owncloud calendar + https rss feeds
-
Re: Calendar module - https URL
Hi,
I’m new to MagicMirror and trying to set it up on my Raspberry Pi 2 before I buy all the Hardware.
I have my own Owncloud (on a hosted webspace) with SSL-Certificate. I tried to set it up like in the thread mentioned above. My calendar config:{ module: "calendar", header: "Linus Kalendar", position: "top_right", config: { colored: false, calendars: [ { url: "webcal://https://mycloud.de/remote.php/dav/calendars/Linus/linusics/", symbol: 'calendar-o', auth: { user: 'Linus', pass: 'superstrongpassword, method: 'basic' } }, { symbol: 'calendar-o', url: "http://i.cal.to/ical/3/borussiadortmund/bundesliga-spielplan/cb9838d6.22dc3615-9550730a.ics" } ], }, },
No problems with the second calendar but the first one from my Owncloud won’t show up. Any suggestions?
I also have problems to get https rss feeds to work. Neither with the default rss module nor with the
MMM-RSS-FEED
module. Is there any chance to get it work?Thanks for any Help :)
-
@BananaBro said in HTTPS and Owncloud calendar + https rss feeds:
webcal://https://mycloud.de/
webcal://https://mycloud.de/
does not look right. Try removing thewebcal://
-
Already tried without
webcal://
. It won’t work either. -
If you open your link in a browser you reach a transit hotel??
Double check your link please -
I didn’t share the real link :D sry.
https://cloud.linus-schuertz.de/remote.php/dav/calendars/Linus/linusics/
i also tried to use a public link like this one where you dont have to authencitate:
https://cloud.linus-schuertz.de/index.php/apps/calendar/p/J41TY60YCHZ4MCQP/magic_mirror_test
doesnt work either
-
@BananaBro
webcal://cloud.linus-schuertz.de/remote.php/dav/public-calendars/J41TY60YCHZ4MCQP?export
I think this is right url of your iCal. -
@Sean said in HTTPS and Owncloud calendar + https rss feeds:
@BananaBro
webcal://cloud.linus-schuertz.de/remote.php/dav/public-calendars/J41TY60YCHZ4MCQP?export
I think this is right url of your iCal.This one actually works. Thanks dude. But how could you know ? :D is there any basic knowledge im missing? Is this anywhere in the owncloud documentary?
-
@BananaBro in your shared calendar, there were subscribe and download buttons. Usually those links are for getting pure ical file.
-
Ah ok. Thanks for the tip.
Since I dont like sharing my private calendar in public, I tried to set it up without sharing the calendar.
{ url: 'webcal://cloud.linus-schuertz.de/remote.php/dav/calendars/Linus/linusics?export', symbol: 'calendar-o', auth: { user: 'Linus', pass: 'superstrongpassword', method: 'basic' } },
This setup is working! :))
Thanks alot for help!