Standard 401 response when using HTTP auth in flask
问题 In flask, I'm using the following snippet to enable HTTP auth: def authenticate(): return Response('<Why access is denied string goes here...>', 401, {'WWW-Authenticate':'Basic realm="Login Required"'}) Now, in my past experience with Flask, if someone's credentials are incorrect and I want to let them know I can just call: abort(401) This gives you the basic apache 401 response. Does anyone know how I can implement that with the snippet above? Thanks 回答1: Custom error responses are really