|
|
|
|
|
by kalli
357 days ago
|
|
This looks interesting. Longtime user of the Vscode-restclient, but have been moving over to httpyac lately for the scripting and cli use. Will take a look to see if hurl is a good fit. One annoying thing I've found in testing these tools is that a standard hasn't emerged for using the results of one request as input for another in the syntax of `.http` files. These three tools for instance have three different ways of doing it: * hurl uses `[Captures]` * Vscode-restclient does it by referencing request names in a variable declaration (like: `@token = {{loginAPI.response.body.token}}`). * While httpyac uses `@ref` syntax. From a quick round of testing it seems like using the syntax for one might break the other tools. [1]: https://hurl.dev/docs/capturing-response.html [2]: https://github.com/Huachao/vscode-restclient [3]: https://httpyac.github.io/guide/metaData.html#ref-and-forcer... |
|