2012-04-04 160 views
3

我正在嘗試添加一個Google日曆小工具以及一個事件。但是,無論何時我嘗試添加小工具以及事件,Google日曆API都會給我一個「無效值」錯誤。我正在使用event.insert protocol。如果我在沒有小工具塊的​​情況下發送請求,它會正常工作,並添加一個事件。但是,添加小工具塊會引發錯誤。Google Calendar API - 如何添加日曆小工具以及事件?

{ 
"location": "San Jose, CA", 
"description": "blah blah blah blah", 
"kind": "calendar#event", 
"start": { 
    "dateTime": "2012-04-04T10:00:00.000-07:00" 
}, 
"end": { 
    "dateTime": "2012-04-04T10:00:00.000-07:00" 
}, 
"gadget": { 
    "iconLink": "http://www.thefreedictionary.com/favicon.ico", 
    "link": "http://www.thefreedictionary.com/_/WoD/wod-module.xml", 
    "title": "Word of the Day", 
    "type": "application/x-google-gadgets+xml", 
    "height": 136, 
    "width": 300, 
    "display": "icon" 
} 
} 

有沒有人知道爲什麼會發生這種情況?我真的需要找到一種方法將圖像插入到我添加到Google日曆中的事件中。謝謝!

+0

你能解釋一下在Google日曆中創建任何事件時如何顯示小工具嗎? – 2018-02-13 05:42:39

回答

7

我也遇到過這個問題。在我看來,iconLink和鏈接必須是https才能工作。

相關問題