[Fixed]-How to get json from android to server – Django

1👍

You should get the json data send to the django app, inside request.body

import json
def android_backend(request):
    json_data = json.loads(request.body)
    # do the processing
    return HttpResponse("ok")

Leave a comment