On Tue, Nov 25, 2008 at 6:47 PM, Dr. Dot <[email protected]> wrote: > > Trying to figure it out...but not having great success. I'm determined > not to give up on it, unless someone out there knows that you cannot > update a Google Calendar seamlessly without having to login to a > Google account.
You're almost there. ;) When using AuthSub, after you click the "Grant Access", you will be issued an auth token (this is explained in the AuthSub docs). Unlike ClientAuth tokens, AuthSub tokens *do not expire* unless explicitly revoked by the user. So, what you need to do is cache the token that's returned and re-use that between requests. There will be a one-time authorization process where the user has to agree to grant your application access, but after that you will be able to access the user's account without re-authorization. -- Trevor Johns --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en -~----------~----~----~----~------~----~------~--~---
