Hi, I'm kind of new the django and to learn it I've tried to build a simple calendaring app that would save the event's info locally and create an event at Google Calendar as well.
The save locally works fine (I use the admin interface). I also know how to create an event at gcal outside of django. My questions is how would you save the event at google calendar from the admin interface? What I was trying to do is to catch a signal, and then upload the data. The problem is that Google needs authentication (via AuthSub), so what I would need is this: First visit: 1. save the event -> calls pre_save/post_save (probably a post_save is better) 2. tell the user to authenticate, and provide a link for it in the messages line 3. user authenticates, we create a sessionToken 4. the token is stored locally for future use 5. the event is created at google calendar Every following visit: 1. save the event 2. use the stored token to create the event at gcalendar as well I have problems with points First visit/2 and First visit/4 (don't really know how should I store the token as I can't store it as a python object, what would be the best). Do you have any ideas? Viktor --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---