class documentation

class WWWAuthenticate(UpdateDictMixin, dict): (source)

View In Hierarchy

Provides simple access to `WWW-Authenticate` headers.

Method __init__ Undocumented
Method __repr__ Undocumented
Method __str__ Undocumented
Method set_basic Clear the auth info and enable basic auth.
Method set_digest Clear the auth info and enable digest auth.
Method stale.setter Undocumented
Method to_header Convert the stored values into a WWW-Authenticate header.
Class Variable algorithm Undocumented
Class Variable auth_property Undocumented
Class Variable domain Undocumented
Class Variable nonce Undocumented
Class Variable opaque Undocumented
Class Variable qop Undocumented
Class Variable realm Undocumented
Class Variable type Undocumented
Instance Variable on_update Undocumented
Property stale A flag, indicating that the previous request from the client was rejected because the nonce value was stale.
Class Variable _require_quoting Undocumented

Inherited from UpdateDictMixin:

Method pop Undocumented
Method setdefault Undocumented
Class Variable __delitem__ Undocumented
Class Variable __setitem__ Undocumented
Class Variable clear Undocumented
Class Variable popitem Undocumented
Class Variable update Undocumented
def __init__(self, auth_type=None, values=None, on_update=None): (source)

Undocumented

def __repr__(self): (source)

Undocumented

def __str__(self): (source)

Undocumented

def set_basic(self, realm='authentication required'): (source)

Clear the auth info and enable basic auth.

def set_digest(self, realm, nonce, qop=('auth'), opaque=None, algorithm=None, stale=False): (source)

Clear the auth info and enable digest auth.

@stale.setter
def stale(self, value): (source)

Undocumented

def to_header(self): (source)

Convert the stored values into a WWW-Authenticate header.

algorithm = (source)

Undocumented

auth_property = (source)

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented

Undocumented

A flag, indicating that the previous request from the client was rejected because the nonce value was stale.

_require_quoting = (source)

Undocumented