views:

130

answers:

1

I would like to create a secure iCalendar Feed with Django. I currently have a feed working using vobject, but it is accesable to the public. Is there a way to secure a iCalendar feed used by iCal, Google Calendar, and Outlook?

+1  A: 

Quick Google Search shows that most iCal clients support HTTP Authentication. You can easily achieve it in Django using this code snippet, providing an useful view decorator.

Ludwik Trammer