Hey Smith, So you need to replace the "token" by the actual authsub token that you got while authenticating using Authsub. here is the link to the Authsub Documentation: http://code.google.com/apis/accounts/docs/AuthSub.html
Alternatively you could use the clientlogin method (login + password): http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html Or even better 3-legged Oauth (but since it's a little complicated to implement I suggest that you use a client library for this instead of building the request manually): http://code.google.com/apis/accounts/docs/OAuth.html and here http://code.google.com/apis/accounts/docs/OAuth.html#AuthProcess You can try OAuth here: http://googlecodesamples.com/oauth_playground/ Usually the client libraries would contain samples using OAuth in the download package. Cheers! * Nicolas Garnier* Developer Programs Engineer Google Developer Relations On Wed, Feb 9, 2011 at 5:14 AM, smith <[email protected]> wrote: > The docs say "See documentation on the Google service for help on the > proper request format" but give no link to this. I've done a search and > cannot find more information. Please let me know what the requirements are > for Google Calendar because I sent > > > Authorization: AuthSub token="token" > > > replacing the token with the proper one setup and I'm guessing I need more > headers sent than just that. > > -- > 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://code.google.com/apis/calendar/community/forum.html > -- 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://code.google.com/apis/calendar/community/forum.html
