Google App Script エンジンを使用して、Rally 機能を Google Apps Sheets に追加しようとしています。Rally に接続しようとしている Google Apps システム上のユーザーからの認証を管理することを除けば、すべてがかなり単純に見えます。Auth ビットを除いて、Google の UrlFetchApp.fetch() 関数はそのトリックを行うようです。助言がありますか?
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;
}