Google Apps 脚本中的 STDOUT 相当于什么?

发布于 2024-11-17 02:04:14 字数 335 浏览 3 评论 0原文

我希望能够将 Google 电子表格中的数据表示为根据请求返回 JSON 的 Web 服务。尽管这在概念上类似于 类似的问题,它们往往会回到以 GUI 为中心的消息框。

到目前为止,正确转换数据相当简单。我无法找到一种基于 HTTP GET 请求将字符串发送回用户代理的方法。是否有相当于打印到标准输出的功能,以便当脚本作为服务发布时它可以用字符串进行响应?

I would like to be able to express data in a Google Spreadsheet as a web service that returns JSON on request. Even though this is conceptually similar to similar questions, they tend to fall back to the GUI-centric message boxes.

So far, it's been fairly trivial to get the data transformed correctly. I'm having trouble finding a way to send a string back to a User-Agent on the basis of an HTTP GET request. Is there an equivalent of printing to stdout so that when a script is published as a service it can respond with a string?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘初心 2024-11-24 02:04:14

您可以使用 fetch 将此数据 POST 到应用程序或类似的东西,而不是显示 msgBox。没有办法只将自定义 HTTP 消息返回到我所知道的请求。

因此,您必须构建一些应用程序来从脚本接收这些帖子,并可能与原始调用进行协调,可能使用某种密钥。不太实用。但如果您正在做的事情在其他地方无法完成,您可能想尝试一下。

Instead of showing a msgBox you can use fetch to POST this data to an application or something like this. There's no way to just return a custom HTTP message to the request that I'm aware of.

So you have to build some application to receive these posts from the script and maybe reconciliate with the original call, maybe using some kind of key. Not very pratical. But you may want to try that if you're doing something that can't be done elsewhere.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文