[Django]-Curl with POST not working, request.POST is empty

3👍

You’re posting JSON. request.POST is for form-encoded data.

You should be accessing request.body and passing it through json.loads().

Leave a comment