I am sending simple GET
request to backend API
, that is built in python.
I tried to get the headers from incoming request but not able to get it.
Here is how I am trying to get it from flask import request
request.headers.get('Authorization')
but every time it return None
only.
Note: I am able to get all other headers like request.headers.get("Content-Type")