如何授予我在我的域中为其他G Suite用户制作的脚本的访问权限?
这是脚本:
function rangeShort() {
var range = SpreadsheetApp.getActiveRange(),
data = range.getValues();
var output = [];
for(var i = 0, iLen = data.length; i < iLen; i++) {
var url = UrlShortener.Url.insert({longUrl: data[i][0]});
output.push([url.id]);
Utilities.sleep(100);
}
range.offset(0,1).setValues(output);
}
答案 0 :(得分:0)
尝试手动运行该脚本。 https://developers.google.com/apps-script/guides/standalone#running_a_standalone_script
然后,系统会要求您查看权限,审核并授予权限。
然后你很高兴去。 这是一次性过程。
答案 1 :(得分:0)
Here's how to collaborate on your apps script project with other developers.
您只需按下应用脚本屏幕右上角的巨型“分享”按钮即可。如果不存在,则脚本可能附加到工作表或表单等,在这种情况下,对该文件具有编辑权限的任何人都可以查看和编辑该脚本。