10. Access Authentication
basic-challenge = "Basic" SP realmThe client sends the user-ID and password (separated by a single colon ":" character) within a base64 [6] encoded-cookie in the credentials.
basic-credentials = "Basic" SP basic-cookie basic-cookie = <base64 encoding of userid-password> userid-password = [ token ] ":" *textThere are no optional authentication parameters for the basic scheme. For example, if the user agent wishes to send the user-ID "Aladdin" and password "open sesame", it would use the following header field:
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==The basic authentication scheme is a non-secure method of filtering unauthorized access to resources on an HTTP server. It is based on the assumption that the connection between the client and the server can be regarded as a trusted carrier. As this is not generally true on an open network, the basic authentication scheme should be used accordingly. In spite of this, clients are strongly encouraged to implement the scheme in order to communicate with servers that use it.
Generated with CERN WebMaker