We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since command arguments and environment variable content have limits on the size, we could implement option to pass request values via stdin.
Definition could look something like:
"pass-stdin-to-command": [ { "source": "payload", "name": "something" }, { "source": "string", "name": "blah blah" } ]
What format should we use to encode these values so scripts can easily figure out which content resembles which value
We could use newline as value separator, but then we'd have to escape all newlines in the actual value.
Other option would be something like HTTP is doing when sending multipart messages by using boundaries.
Third option would be to encode data using JSON? Tools like jq make this an easy task to handle in shell scripts.
jq
The text was updated successfully, but these errors were encountered:
My 2 cents would be to restrict this feature only the entire-payload. Smaller things could be passed in as args or env vars.
If not, then I would vote for your option 3, encode it as JSON
Sorry, something went wrong.
My 2 cents would be to restrict this feature only the entire-payload.
👍
No branches or pull requests
Since command arguments and environment variable content have limits on the size, we could implement option to pass request values via stdin.
Definition could look something like:
Questions
We could use newline as value separator, but then we'd have to escape all newlines in the actual value.
Other option would be something like HTTP is doing when sending multipart messages by using boundaries.
Third option would be to encode data using JSON? Tools like
jq
make this an easy task to handle in shell scripts.The text was updated successfully, but these errors were encountered: