Reputation: 141
I am trying to set an http head manager element with application/x-www-form-urlencoded; charset=UTF-8"; param. I get the needed result from postman but there is a checkbox for this setting. I need to use JMeter for the rest api project.
Upvotes: 2
Views: 6268
Reputation: 168092
You need to set up HTTP Header Manager to send Content-Type header with the value of application/x-www-form-urlencoded; charset=UTF-8
Actually you can just record Postman requests instead of building them manually.
File - Templates - Recording - Create
Workbench - HTTP(S) Test Script Recorder
and click "Start" Postman.exe --proxy-server=localhost:8888
Upvotes: 4