SalesForce Calendar Sync with Google Calendar

Does anyone know how to sync SalesForce calendar with Google Calendar without using third-party applications or services like Appirio?

Any guidance or links to websites will be appreciated, preferably using .Net as the language and using the APIs of both Google and Salesforce. I saw both API links (so don't give me the Google API and Sales Force API links), and I need an example of how this is done at the domain level, and not at the user level.

+3
source share
1 answer

Not sure what you mean by domain level, since all events must have an owner, but if you mean all events regardless of the owner, then yes, you can do it.

I had a requirement for one-way synchronization of SF events for Blackberry users in the field. I have done this:

  • I created a web service handler for the Sales Salesforce object
  • I did a workflow in the seller to send an outgoing message when creating / updating an event
  • The web service handler (executed in C # and located on the corporate network) receives a call from SF servers, reads event data
  • The handler generates an ICS attachment (iCalendar, see RFC 2445 and 5545) and sends it to the BB user through the BB server.

, , 3/4 google GoogleAPI .NET client lib. , , , . , Google, , - , , , SF.

+1

All Articles