我了解在clasp
的帮助下,我们可以以编程方式部署脚本(即使无需登录到Apps脚本编辑器);但是,我想知道是否有类似的功能可以让我们直接从Apps脚本编辑器调用这些API。
我发现以下资源有助于通过HTTP GET和POST请求进行部署-
不幸的是,除了此示例代码段之外,我找不到任何引用,该引用可以以类似于我们执行其他脚本服务的方式/方式的方式来调用这些引用,例如:SpreadsheetApp
或ScriptApp
或PropertiesService
等
<script src="https://apis.google.com/js/api.js"></script>
<script>
/**
* Sample JavaScript code for script.projects.versions.create
* See instructions for running APIs Explorer code samples locally:
* https://developers.google.com/explorer-help/guides/code_samples#javascript
*/
function authenticate() {
return gapi.auth2.getAuthInstance()
.signIn({scope: "https://www.googleapis.com/auth/script.projects"})
.then(function() { console.log("Sign-in successful"); },
function(err) { console.error("Error signing in", err); });
}
function loadClient() {
gapi.client.setApiKey("YOUR_API_KEY");
return gapi.client.load("https://content.googleapis.com/discovery/v1/apis/script/v1/rest")
.then(function() { console.log("GAPI client loaded for API"); },
function(err) { console.error("Error loading GAPI client for API", err); });
}
// Make sure the client is loaded and sign-in is complete before calling this method.
function execute() {
return gapi.client.script.projects.versions.create({
"resource": {}
})
.then(function(response) {
// Handle the results here (response.result has the parsed body).
console.log("Response", response);
},
function(err) { console.error("Execute error", err); });
}
gapi.load("client:auth2", function() {
gapi.auth2.init({client_id: "YOUR_CLIENT_ID"});
});
</script>
<button onclick="authenticate().then(loadClient)">authorize and load</button>
<button onclick="execute()">execute</button>
我了解以上内容是JavaScript,但对于Apps Script并不是特别有用,但是...
尝试查看是否有
gapi.client.script.projects.versions.create
的Apps脚本(浏览器编辑器)版本
答案 0 :(得分:2)
没有可用的内置服务,但是您可以使用car_df[['inside', 'outside']].plot()
plt.fill_between(car_df.index, car_df.inside, car_df.outside,
color=(0.8, 0.9, 0.5));
直接呼叫Apps Script REST API。
要处理授权,您必须将您的Apps Script项目绑定到GCP项目并启用Apps Script API(在GCP项目上)。
然后,您可以在应用脚本项目的清单文件(appscript.json)中设置所需的OAuth范围。这样一来,您可以调用URLFetchApp
并将结果值用作承载令牌,并在进行ScriptApp.getOAuthToken()
调用时作为身份验证标头传递。