I am newbie to python and using Python Flask and generating REST API service.
I want to check authorization header which is sent the client.
But I can\'t fin
from flask import request request.headers.get('your-header-name')
request.headers behaves like a dictionary, so you can also get your header like you would with any dictionary:
request.headers
request.headers['your-header-name']