Hello Haim, Can you check that the event returned by the API after sending the request do contain the reminder element?
Also, I do remember an issue with reminders about 6 months ago where users had to reset their default timezone to make reminders work again. Best, Alain On Wed, Aug 17, 2011 at 9:11 AM, Haim Levy <[email protected]> wrote: > hello, > About a year ago I wrote a program that check for something new and making > an event with sms reminder in the calendar. > It works well until last week (actually I didn't use that program for > months until last week). > - I don't get any sms (some bug in the reminder's system). > > more details: > - If I make an event with reminder manually in the calender. it will send > the sms. > - After the program sends the request, you can see the event with the > reminder in the calendar, however, you still dont get the sms. > > I hope someone can help me. > > sincerely, > Haim Levy. > > P.S. the reminder code: > > EventEntry messege = new EventEntry(); > messege.Title.Text = Text; > When now = new When(DateTime.Now.AddSeconds(80), DateTime.Now.AddHours(1)); > > messege.Times.Add(now); > Reminder sms = new Reminder(); > sms.Minutes = 1; > sms.Method = Reminder.ReminderMethod.sms; > messege.Reminders.Add(sms); > > -- > 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 > -- Alain Vongsouvanh -- 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
