Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,913 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have create a Django app (with postgresql database) in az.
The views.py look like
@require_POST
@csrf_exempt
def enr(request):
jsondata = request.body
...
.save()
return HttpResponse(status=200)
I would like to receive a json data sent from a 3rd party app. I have look several docs in vain. Try also the az function. Please help!!!