I am using baikal http://sabre.io/baikal/ server for hosting calendars online
I am trying to load all the appointments on this server with the scheduler. I was told I could use
scheduler.load(“http://cal.example.ca/cal.php/calendars/user/default/","ical”);
unfortunately I keep getting Status Code:401 Unauthorized. I do need to provide a username and password to access this calendars ICS files. How can I provide credentials?
I have tried the below and received the same error
scheduler.load(“http://username:password@cal.example.ca/cal.php/calendars/user/default/","ical”);
Any ideas?