Hi I'm only trying to create a single calendar event not a recurrence. Unfortunately I can't decipher the php code, I do understand php but I'm trying to make this work in Salesforce
I've now started to look at something else: I'm using the code from this page http://pastebin.com/UjjMH8ej to create a single calendar event in Google But when I click on the Log Me In button, which tries to open up the following url https://accounts.google.com/AuthSubRequestJS?session=1&scope=http%3A%2F%2Fwww.google.com%2Fcalendar%2Ffeeds%2F&next=https%3A%2F%2Fc.cs8.visual.force.com%2F................%3Fcore.apexpages.devmode.url%3D1&hd=default I get the following message: The page you have requested cannot be displayed. Another site was requesting access to your Google Account, but sent a malformed request. Please contact the site that you were trying to use when you received this message to inform them of the error. A detailed error message follows: The site "http://force.com" has not been registered. Regards Steve On 24 October 2011 17:25, pierre <[email protected]> wrote: > Hi, > > > This is the expected behavior for recurrent events : the recurrence pattern > is encoded in the "long string" ; it's up to you to decode it (you may use a > third-party api to do that). > > However, you could retrieve a feed where all recurrent events are expanded. > That is to say : if one event is set to occur each wednesday, the "feed with > recurrent events expanded" will contain an event for each wednesday. The > recurrence pattern is expanded by Google's servers, and you don't have to > manage with it. > > To retrieve a feed where recurrence patterns are expanded, you should set > the query parameter > SingleEvents<http://code.google.com/intl/fr/apis/calendar/data/2.0/reference.html#Parameters>with > "true" value. With Zend API, you set the Query object property : > $query->setSingleEvents(true) ; you may find samples about how to create a > query in the following Zend API Reference : > http://framework.zend.com/manual/en/zend.gdata.calendar.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 > -- Steven Fouracre BSc Pgd Software Development Lead euNetworks *15 Worship Street London EC2A 2DT* D: +44 20 7952 1313 M: +44 7763 118 696 S: sforcesteve E: [email protected] www.eunetworks.com -- 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
