/
HTTP Basic Authentication
HTTP Basic Authentication
This is one of the oldest forms of HTTP authentication. In the earliest days of the web this what would be part of seeing a little drop down at the top of a web page where you would need to enter a username and password into your browser.
How does it look?
Basically we have:
Authorization header
With the keyword Basic followed by the username:password but where the username and password are encoded in Base64.
This fragment of Lua code in the translator makes it more clear how this looks:
See the Confluence API for an example of an API which uses this method of authentication.
See Basic access authentication
and
, multiple selections available,
Related content
Basic Authentication
Basic Authentication
More like this
What does a simple HTTP request and response look like?
What does a simple HTTP request and response look like?
More like this
SOAP - Simple Object Access Protocol
SOAP - Simple Object Access Protocol
More like this
History of HTTP
History of HTTP
More like this
How do I authenticate to a web API?
How do I authenticate to a web API?
More like this
HTTP Request Structure
HTTP Request Structure
More like this