I want to set all of my http headers responses to something like this:
JavaScript
x
2
1
response.headers["X-Frame-Options"] = "SAMEORIGIN"
2
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?
JavaScript
1
4
1
@app.before_request
2
def before_request():
3
# response.headers["X-Frame-Options"] = "SAMEORIGIN"
4
Advertisement
Answer
Set the header in a @app.after_request()
hook, at which point you have a response object to set the header on:
JavaScript
1
5
1
@app.after_request
2
def apply_caching(response):
3
response.headers["X-Frame-Options"] = "SAMEORIGIN"
4
return response
5
The flask.request
context is still available when this hook runs, so you can still vary the response based on the request at this time.