Skip to content
Advertisement

Tag: http-headers

Python, Flask: How to set response header for all responses

I want to set all of my http headers responses to something like this: I checked this question, but it only changes the header for one specific controller. I want to change all of my headers maybe in “before_request” function similar to the following logic. How can I do that? Answer Set the header in a @app.after_request() hook, at which

Advertisement