We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Would be nice to have functionality for generate pact also from formData type. Atm in case of e.g. feign it's sent like
@RequestMapping(method = RequestMethod.POST, value = "/something/{id}", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE) @Headers("Content-Type: application/x-www-form-urlencoded") Object getSomeData ( @PathVariable("id") String id, @RequestBody String body );
and calll
client.getSomeData("1", "key1=value1&key2=value2")
formData were sent inside body as string and after pact gen map were not extracted - we receive simple "body": "1lxxFqpPYF"
"body": "1lxxFqpPYF"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would be nice to have functionality for generate pact also from formData type.
Atm in case of e.g. feign it's sent like
and calll
formData were sent inside body as string and after pact gen map were not extracted - we receive simple
"body": "1lxxFqpPYF"
The text was updated successfully, but these errors were encountered: