在哪里托管 Smartsheets API 代码

Where to host Smartsheets API code

我有兴趣学习使用 Smartsheets API。过去,我在 Google Apps Script 中创建了工作流,它有一个内置的 IDE 来存放脚本。 Smartsheets 有类似的东西吗?如果没有,哪里是一个常见的地方来保存你的代码并让它对 webhooks/events?

做出反应

此致,

肖恩

API 只是您的应用程序和 Smartsheet 之间进行通信的一种方式 - 您的可执行代码没有托管。智能表 provides a number of SDKs to help make the calls easier to perform, but in theory you could use any language to make the REST commands. So, pretty much any service that allows executable code would work, such as Amazon AWS, Google Cloud, Microsoft Azure, or others. Here's a brief comparison of services.

在担心云部署之前,您可以在自己的计算机上开始开发。请在此处查看入门指南和示例:https://github.com/smartsheet-platform/getting-started

如果您确实需要响应 webhook,您的代码必须 运行 某个地方接受来自 Internet 的传入 HTTP 调用,而不会被防火墙阻止。这可能在您的数据中心、任何云服务中,或通过 https://ngrok.com/

等隧道