I have a requirement to read application/x-www-form-urlencoded data as a request body from POST API, The content is in String format like below. How can we convert it to java.util.Map in mule3?

enter image description here

Please suggest!!

1

There are 1 answers

0
MVS On BEST ANSWER

I couldn't find any direct transformer support from mule3 for this, Found a workaround that is split that by ',' and read the values individually, It solved my problem.