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
JSON API Custom Query does not decode urls before it evaluates them. Some API Testing Applicattions such as Postman encode the url's before sending them out. Is it possible to have a fix for this ?
When using applications such as Postman, urls turn from this...
The parser trys to validate the url without making an attempt to decode the url and throws an error. A simple decode before evaluating the url should fix this issue.
JSON API Custom Query does not decode urls before it evaluates them. Some API Testing Applicattions such as Postman encode the url's before sending them out. Is it possible to have a fix for this ?
When using applications such as Postman, urls turn from this...
filter=(:or,(:and,(events.end_date,:gte,1549745450224),(events.start_date,:lte,1549745450224)))
into this...
filter=%28:or,%28:and,%28events.end_date,:gte,1549745450224%29,%28events.start_date,:lte,1549745450224%29%29%29
The parser trys to validate the url without making an attempt to decode the url and throws an error. A simple decode before evaluating the url should fix this issue.
Please see issue #5 for a proposed change.
The text was updated successfully, but these errors were encountered: