Closed GSVarsha closed 2 weeks ago
Fix: Provide ASGI support with Django.
request.environ is available only with requests of type WSGIRequest and not ASGIRequest. request.headers is only available from django-2.2.
request.environ
WSGIRequest
ASGIRequest
request.headers
django-2.2
Since we provide support for django>=1.11 we'll use request.META.
django>=1.11
request.META
Fix: Provide ASGI support with Django.
Why?
request.environ
is available only with requests of typeWSGIRequest
and notASGIRequest
.request.headers
is only available fromdjango-2.2
.Since we provide support for
django>=1.11
we'll userequest.META
.