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")
Source:stackexchange.com
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")