将 SalesForce 日历与 Google 日历同步
有谁知道如何在不使用 Appirio 等第三方应用程序或服务的情况下将 SalesForce 日历与 Google 日历同步?
任何指导或网站链接将不胜感激,最好使用 .Net 作为语言并使用 Google 和 Salesforce 的 API。我已经看到了 API 的参考(所以不要给我 Google 和 Sales Force API 的链接),我需要的是某种示例,说明如何在域级别而不是在用户级别完成此操作。
Does anyone know how to synchronize SalesForce calendar with Google Calendar without using 3rd party apps or services like Appirio?
Any guidance or links to websites would be appreciated, preferably using .Net as a language and using API's of both Google and Salesforce. I have seen both of the API's reference (so dont give me the links of Google and Sales force API) and what I need is some sort of example how this is done, in a domain level and not on a user level.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您所说的域级别是什么意思,因为所有事件都必须有一个所有者,但如果您的意思是所有事件,无论所有者如何,那么是的,您可以做到这一点。
我需要将 SF 事件单向同步到现场的黑莓用户。我所做的是:
在您的情况下,您可能会根据 GoogleAPI 文档并使用 .NET 客户端库将 3/4 替换为创建 google 日历条目。如果需要双向同步,请确保双方保留事件的唯一 ID,以避免重复。您可能需要从 Google 日历中创建定期拉取,以查看是否有任何新消息出现,我认为没有办法接收类似于 SF 出站消息的通知。
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 a one-way sync of SF events to blackberry users on the field. What I did was:
In your case you would probably replace 3/4 with creatioon of google calendar entry as per GoogleAPI doc and using .NET client lib. If a bidirectional sync is required make sure you keep a unique ID of the event on both sides to avoid duplication. You will probably have to create a periodic pull from Google calendar to see if anything new came along, I don't think there is a way to receive notifications similar to SF outbound messages.