Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apigateway/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def no_client_error(e):

@app.errorhandler(401)
def on_401(e):
return jsonify({"message": "Unauthorized"}), 401
return jsonify({"message": "Unauthorized. If you are using the API, please confirm your Authorization header is of the form Bearer TOKEN and not Bearer:TOKEN"}), 401

@app.errorhandler(405)
def on_405(e):
Expand Down