class Unauthorized(HTTPException):
401 Unauthorized
Raise if the user is not authorized to access a resource.
The www_authenticate argument should be used to set the
WWW-Authenticate header. This is used for HTTP basic auth and
other schemes. Use ~werkzeug.datastructures.WWWAuthenticate
to create correctly formatted values. Strictly speaking a 401
response is invalid if it doesn't provide at least one value for
this header, although real clients typically don't care.
Parameters | |
description | Override the default message used for the body of the response. |
www-authenticate | A single value, or list of values, for the WWW-Authenticate header(s). |
Method | __init__ |
Undocumented |
Method | get_headers |
Get a list of headers. |
Class Variable | code |
Undocumented |
Class Variable | description |
Undocumented |
Instance Variable | www_authenticate |
Undocumented |
Inherited from HTTPException
:
Class Method | wrap |
Create an exception that is a subclass of the calling HTTP exception and the exception argument. |
Method | __call__ |
Call the exception as WSGI application. |
Method | __repr__ |
Undocumented |
Method | __str__ |
Undocumented |
Method | get_body |
Get the HTML body. |
Method | get_description |
Get the description. |
Method | get_response |
Get a response object. If one was passed to the exception it's returned directly. |
Instance Variable | response |
Undocumented |
Property | name |
The status name. |
Undocumented
Parameters | |
description:t.Optional[ | Undocumented |
response:t.Optional[ | Undocumented |
www_authenticate:t.Optional[ | Undocumented |