Accept application/x-www-form-urlencoded

1
Is there a way to send data of the content-type application/x-www-form-urlencoded to a published REST service? I’ve looked at https://community.mendix.com/link/questions/94260, but every time I’ve tried to call my REST service with this content-type, I get a 400 response saying that the content-type header I specified isn’t supported. Is there some way around this without having to write too much custom Java code?
asked
2 answers
1

You can do that, but you will need to parse the content yourself. Publish a REST operation that takes a String as a body parameter.

answered
0

image.png

you should do this

answered