12

我想编写一个 Chrome 扩展程序,允许用户直接从多功能框发送电子邮件。是否可以从 Chrome 扩展程序中直接执行 Google Apps 脚本代码,例如Gmail 服务 API ?

4

1 回答 1

13

是的,您可以,但有一些限制 如果您将应用程序脚本代码发布为可公开访问的 Web 应用程序,您可以向 Web 应用程序 URL 发出 GET 请求以执行应用程序脚本代码。

例如

doGet(e){
//use e.parameter here
//write your apps script code
return ContentService.createTextOutput('your return content');
}

发布后,说你有一个像这样的 URL

https://script.google.com/macros/s/djihwerd98ejdeijded/exec

现在从您的 chrome 应用程序发出请求

GET https://script.google.com/macros/s/djihwerd98ejdeijded/exec?param=value
于 2013-08-23T14:21:14.507 回答