1đź‘Ť
âś…
With POSTMAN you’re sending form data and with iOS you send json data instead.
That’s why it is parsed differently.
You need to set Content-Type: application/json
header on POSTMAN and send raw data:
{“color”: “black”}
This way you will get the same dict format on both.
👤mariodev
Source:stackexchange.com