Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可以使用邮递员通过 REST API 访问 CrateIO 吗?语法与 curl 语法有何不同。
是的,可以使用 PostmanPOST对 Crate.IO 的 HTTP 端点调用请求/_sql,语法没有区别。
POST
/_sql
只需POST用作请求方法,以及 Crate 实例的 URL。选择rawPOST body 并指定 JSON,就好像您将使用 curl 编写它一样。JSON 至少需要stmt包含应该在服务器上执行的 SQL 语句的属性。
raw
stmt
HTTP 端点的文档:https ://crate.io/docs/reference/sql/rest.html