【英文】Required request body is missing
Preface
When using Postman for interface testing, the response error is: Required request body is missing
.
Reason
- The request parameter format is incorrect. Parameters should not be passed directly, but should be passed as a JSON formatted string.
Solution
- Parameters should not be passed in Params, but should be passed in Body. Check
raw
, select JSON on the right side, and then write the JSON formatted string as the parameter in the editing area.