In basic HTTP authentication, the client passes their username and password in the HTTP request header . Typically, using this technique we encrypt user credentials string into base64 encoded string and decrypt this base64 encoded string into plain text. You can also use another encryption and decryption technique.
Read moreWhat is Basic Authentication in REST API?
Basic authentication is a simple authentication scheme built into the HTTP protocol . The client sends HTTP requests with the Authorization header that contains the word Basic word followed by a space and a base64-encoded string username:password .
Read more