You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Curl responses are usually returned without any linebreaks or spacing. This isn't a problem when using jq via the command line.
However this filter doesn't pick up on values unless the response is "prettified" first. I'm working around this by capturing the response in a variable and running it through jq eg: echo $RESPONSE | jq . This outputs a prettified response which the filter can work with.
This may also be related to #7. Perhaps the parsing methods used in the filter could be improved so they're more robust?
The text was updated successfully, but these errors were encountered:
Hi guys
Curl responses are usually returned without any linebreaks or spacing. This isn't a problem when using jq via the command line.
However this filter doesn't pick up on values unless the response is "prettified" first. I'm working around this by capturing the response in a variable and running it through jq eg:
echo $RESPONSE | jq .
This outputs a prettified response which the filter can work with.This may also be related to #7. Perhaps the parsing methods used in the filter could be improved so they're more robust?
The text was updated successfully, but these errors were encountered: