class UnauthorizedResource: (source)
Implements interfaces: twisted.web.resource.IResource
| Method | __init__ |
Undocumented |
| Method | getChildWithDefault |
Disable resource dispatch |
| Method | putChild |
Put a child IResource implementor at the given path. |
| Method | render |
Send www-authenticate headers to the client |
| Class Variable | isLeaf |
Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource. |
| Instance Variable | _credentialFactories |
Undocumented |
| Parameters | |
| path:bytes | 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. |
| child | Undocumented |