https://github.com/coatsy/icalserver
Sample dotnet core WebAPI server to serve internet calendars
https://github.com/coatsy/icalserver
Last synced: 4 months ago
JSON representation
Sample dotnet core WebAPI server to serve internet calendars
- Host: GitHub
- URL: https://github.com/coatsy/icalserver
- Owner: coatsy
- License: mit
- Created: 2018-10-31T10:43:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-07T05:10:14.000Z (over 7 years ago)
- Last Synced: 2025-03-11T22:34:49.013Z (about 1 year ago)
- Language: C#
- Size: 67.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# iCalServer
iCalServer is a sample dotNet Core WebAPI implementation of a service serving [iCal](https://en.wikipedia.org/wiki/ICalendar) Calendars.
Much of the structure for the code was taken from a 2012 blog post on [serving ics requests from SharePoint](https://arunjameskc.wordpress.com/2012/10/10/implementing-custom-sharepoint-icalendar-ics-requests-using-httphandler/).
The basic Authentication implemented here is based on Barry Dorans' [idunno.Authentication](https://github.com/blowdart/idunno.Authentication)
## Sample
To see the service in action, add a internet calendar to Outlook with the url
https://icalserver.azurewebsites.net/api/calendar
You'll be prompted for credentials. use anything for the username and `Pass@word1` for the password.
This will give you a 5 event calendar called {your username}'s Internet Calendar.
If you put a user ID in the url, for example
https://icalserver.azurewebsites.net/api/calendar/Suzanne
you'll get a calendar called Suzanne's Internet Calendar
## Architecture
## Setup
## Deployment
## Usage