0
即時通訊設法訪問Google Apps網域中的日曆資源數據。從Google Apps腳本中的API中獲取數據,如何操作?
我有這樣的:
function myFunction() {
var url = 'https://apps-apis.google.com/a/feeds/calendar/resource/2.0/example.com/';
var response = UrlFetchApp.fetch(url);
Logger.log(response);
}
但我需要授權。
「請求失敗https://apps-apis.google.com/a/feeds/calendar/resource/2.0/example.com/返回所需的代碼401授權」
是否有人知道我是如何授權?我試圖添加先進的服務和日曆API,但沒有奏效。