I\'m sending a POST request with JSON body to a Django server (fairly standard). On the server I need to decode this using json.loads().
json.loads()
The problem is
I believe that the other end from where you receive this request does not convert the data to JSON before sending the request. Either you have to convert the data to JSON before you send, or just try accessing request.body in your view.