class twisted.web._auth.wrapper.UnauthorizedResource: (source)
Implements interfaces: twisted.web.resource.IResource
Simple IResource to escape Resource dispatch
Class Variable | isLeaf | Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource. |
Method | __init__ | Undocumented |
Method | render | Send www-authenticate headers to the client |
Method | getChildWithDefault | Disable resource dispatch |
Method | putChild | Put a child IResource implementor at the given path. |
Instance Variable | _credentialFactories | Undocumented |
Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.
bool
)
Put a child IResource implementor at the given path.
Parameters | path | A single path component, to be interpreted relative to the path this resource is found at, at which to put the given child. For example, if resource A can be found at http://example.com/foo then a call like A.putChild(b"bar", B) will make resource B available at http://example.com/foo/bar. (type: bytes ) |
child | Undocumented |