I use a custom http header for URL signature just called \"sign\", how to get such custom HTTP header value in Django?
As of Django 2.2 you can use the HttpRequest.headers dictionary which provides case-insensitive dictionary of request headers, like such:
HttpRequest.headers
my_header = request.headers.get('x-my-custom-header')
See django.http.HttpRequest.headers