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
The requester can send JSON data and it is able to reference data from the event:
json: field: ${message}
This works as expected if message is a string.
message
However, the reference is not converted into valid JSON if the referenced data from the event is a dict:
json: field: ${some_dict}
some_dict = {"foo": "bar"} is converted to "{'foo': 'bar'}". This string can not be parsed to JSON without preprocessing it or using ast_eval.
some_dict = {"foo": "bar"}
"{'foo': 'bar'}"
ast_eval
Do you think this could be changed so that dict references are sent as valid JSON?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The requester can send JSON data and it is able to reference data from the event:
This works as expected if
message
is a string.However, the reference is not converted into valid JSON if the referenced data from the event is a dict:
some_dict = {"foo": "bar"}
is converted to"{'foo': 'bar'}"
. This string can not be parsed to JSON without preprocessing it or usingast_eval
.Do you think this could be changed so that dict references are sent as valid JSON?
The text was updated successfully, but these errors were encountered: