-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
[BUG] JSON formatter fails to handle non-string variable placeholder #1038
Comments
You have to put collection/environment variables inside of a string for it to work. So it would look like something like this: {
"SomeField": "{{someVar}}"
} It's understandably confusing since the text turns orange implying that it is correctly formatted. I guess it could be possible to interpolate collection/environment variables outside of quotes if they are numbers but it would be programmatically complicated. The other solution would be to provide a hint that it needs to be inside of a string to work. |
I get the idea of wrapping things as strings. I agree that dispite the error in the editor (without string wrapping) the call will still work, but the the prettifier can't prettify anymore. |
This relates to the pull request I made here #1025. I can make sure the JSON linting errors doesn't show for Bruno collection/environment variables. |
It appears that the Prettify button for JSON bodies doesn't work anymore if you use |
Convert unquoted variables in JSON body to 1 in JSON linter. This allows for putting multiple environment/collection variables next to each other and still be unquoted.
Fix (#1038): Handle unquoted variables in JSON Lint
This issue can be closed now @helloanoop. Didn't realize there was keywords like |
When trying to assign a non-string value from the collection/environment to a JSON field the formatter reports a parsing error:
Expecting 'STRING' , '}' got '{'
Sample valid JSON:
Sample failing JSON:
Tested in Bruno
1.2.0
The text was updated successfully, but these errors were encountered: