I have a use case for mocking third-party API where data is sent with POST via body in application/x-www-form-urlencoded format.
It seems Smocker is pretty flexible in terms of various matchers for individual JSON keys but matchers for urlencoded params is not supported.
I have a use case for mocking third-party API where data is sent with POST via body in
application/x-www-form-urlencoded
format. It seems Smocker is pretty flexible in terms of various matchers for individual JSON keys but matchers for urlencoded params is not supported.So far my workaround looked the following:
However, this solutions relies on order of the params which should not be relevant.
Would you consider adding support for urlencoded body matching?