如何添加事件谷歌日曆和雅虎日曆在asp.net?添加事件到谷歌日曆和雅虎日曆
0
A
回答
1
下載api,查看api。 http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html
注意創建活動 從部分:http://code.google.com/apis/calendar/data/2.0/developers_guide_dotnet.html#CreatingSingle
身份驗證服務
創建事件
EventEntry entry = new EventEntry(); // Set the title and content of the entry. entry.Title.Text = "Tennis with Beth"; entry.Content.Content = "Meet for a quick lesson."; // Set a location for the event. Where eventLocation = new Where(); eventLocation.ValueString = "South Tennis Courts"; entry.Locations.Add(eventLocation); When eventTime = new When(DateTime.Now, DateTime.Now.AddHours(2)); entry.Times.Add(eventTime); Uri postUri = new Uri("https://www.google.com/calendar/feeds/default/private/full"); // Send the request and receive the response: AtomEntry insertedEntry = service.Insert(postUri, entry);
1
相關問題
- 1. 添加事件到谷歌日曆,雅虎日曆,展望和ical
- 2. ios添加事件到谷歌日曆
- 3. 谷歌日曆/雅虎日曆不工作的iCal格式
- 4. 在雅虎日曆中創建事件
- 5. 通過腳本添加日曆,雅虎日曆
- 6. 谷歌日曆事件GUI
- 7. iphone谷歌日曆事件
- 8. Javascript庫創建日曆uri /鏈接到谷歌,雅虎,Outlook,iCal?
- 9. 出口雅虎日曆
- 10. 獲取雅虎日曆
- 11. 谷歌日曆全日曆
- 12. 導出日曆事件到谷歌日曆,ical,microsoft outlook
- 13. 活動添加到谷歌日曆
- 14. 谷歌腳本重複新的谷歌日曆事件到另一個日曆
- 15. 谷歌日曆
- 16. 谷歌日曆
- 17. 谷歌日曆
- 18. 谷歌日曆
- 19. 從我的網站添加事件到我的谷歌日曆
- 20. 如何通過谷歌日曆API「添加客人」到事件?
- 21. 更多細節添加到谷歌日曆事件
- 22. 批量添加事件到谷歌日曆
- 23. 谷歌Api日曆添加參加者
- 24. 完整的日曆不顯示任何谷歌日曆事件
- 25. 無法發送谷歌日曆事件非Gmail的日曆
- 26. 自定義視圖日曆中的谷歌日曆等事件
- 27. 谷歌窗體日曆格式的日曆事件問題
- 28. 添加日曆事件
- 29. 谷歌日曆API v3沒有獲取谷歌日曆事件的顏色ID
- 30. 谷歌日曆按URL添加要求
什麼雅虎? – Alexandre 2011-05-08 20:07:50
javascript:http://developer.mail.yahoo.com/om/docs/OpenapiPublic/Calendar.html jQuery:http://keith-wood.name/icalendar.html等等 – 2011-05-09 04:33:47