3👍
✅
You’re posting JSON. request.POST
is for form-encoded data.
You should be accessing request.body
and passing it through json.loads()
.
Source:stackexchange.com