Created
January 13, 2016 20:38
-
-
Save hirobert/394981a661cbf78d442e to your computer and use it in GitHub Desktop.
flask abort as json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import abort, make_response, jsonify | |
abort(make_response(jsonify(message="Message goes here"), 400)) |
thank you!
This is goofy, because jsonify
already returns a Response, but then you have to wrap it in another one just to set the status code. Why is abort
this bad this many years on?
I'm doing abort(Response(f'{{["error":{str(ex)}}}\n'], status=400, content_type='application/json'))
instead, because I regard it to be less of a hack. But really jsonify should have a parameter that allows you to set the status.
@pavelkomarov You can return specific status with jsonify
by returning a tuple like this for example:
return jsonify({"error": "Unauthorized"}), 401
If you have your API code in a blueprint, you can also do this I believe
@blueprint_api.errorhandler(404)
def not_found(error):
return make_response(jsonify({'error': 'Sorry, board not found'}), 404)
The good thing here is that any other requests outside of the blueprint will continue to see the normal 404 page
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
THANK YOU THIS SAVED MY LIFE.
I was sooo frustrated. My solution is this: