Basic Authentication
Basic Authentication is the most common authentication system for the HTTP protocol. It is included in the HTTP request header like this:
Authorization: Basic {base 64 credentials in the format user:password}
Note: The use of Base 64 is due to the MIME standard.
Updated over 4 years ago