Open tiagomarto opened 3 years ago
Correct, we do not support the encoding keyword just yet, that's a power user thing you don't often see in the wild.
Fancy rolling your sleeves up and giving us a hand? It looks like there's two of you interested, but we've got more features on our roadmap than we have developers to write them.
Hey team, do you have plans for adding support for application/x-www-form-urlencoded request bodies anytime soon?
Removing points to re-groom and discuss with team.
Hey team! Please add your planning poker estimate with ZenHub @Amjcraft @lukasz-kuzynski-11sigma @radzserg @rainum
Hey team! Please add your planning poker estimate with ZenHub @Amjcraft @daniel-white @EdVinyard @jasonmgillhub @rainum
Describe Issue
I'm mocking a API that receives as input a x-www-form-urlencoded containing a key called request and a json as value (yaml below for reference).
I'm running Prism in a docker container and running the yaml file to generate the mock.
The docker command i'm using is as below:
docker run --init --rm -v ${PWD}:/tmp -p 4010:4010 stoplight/prism mock -h 0.0.0.0 "/tmp/example.yaml"
Yet, when I make a request in postman at /json it returns me 422 error, as seen in the picture:
Expected Behavior
I Expect Prism to give me the 200 code output with the response examples
Is this a problem from my setup or Prism can't handle this input format?