我正在嘗試使用Google App腳本引擎爲Google Apps表添加拉力賽功能。除了在試圖與Rally連接的Google Apps系統上管理用戶的身份驗證外,一切看起來相當簡單。除了Auth位之外,Google的UrlFetchApp.fetch()函數似乎也能做到這一點。有什麼建議麼?如何從Google App腳本連接到拉力賽?
function RallyQuery(sz, order, fetch, stylesheet)
{
if (typeof fetch === "undefined"){ fetch = true; }
if (typeof stylesheet === "undefined"){ stylesheet = "/slm/doc/webservice/browser.xslsz";}
var result = "[null]";
var query = "https://rally1.rallydev.com/slm/webservice/1.42/task?query=" + sz
+ "&order=" + order
+ "&fetch=" + fetch
+ "&stylesheet=" + stylesheet;
result = UrlFetchApp.fetch(query);
return result;
}
你是什麼意思「似乎做伎倆」?您能否發現您遇到的特定錯誤或問題? – TronicZomB 2013-04-30 01:51:00