swagger-ui icon indicating copy to clipboard operation
swagger-ui copied to clipboard

Try out form does not work when POST with application/x-www-form-urlencoded

Open fieder opened this issue 7 years ago • 0 comments

I have no problems when I specify 'application/json' but the client does not like it when type is changed. I'm submitting a form and this is my swagger definition.

Is it supported?

/tickets/checkout: {
post: {
tags: [
"Tickets"
],
summary: "Checkout",
description: "Initiates payment checkout",
operationId: "jqueryPostCheckoutFormHandlerMercadoPagoUsingPOST",
consumes: [
"application/x-www-form-urlencoded"
],
produces: [
"application/json"
],

fieder avatar May 16 '17 12:05 fieder