I use a custom http header for URL signature just called \"sign\", how to get such custom HTTP header value in Django?
I was trying to access the header with the above answers, using this code:
request.META.get('HTTP_{your uppercased header name}')
But It didn't work for me, and then I realized that the custom header should not contain underscore so I changed the underscore with dash and boom, everything started working. Hope this will help people like me. :-)