A server you are trying to access via an API implements a Basic Auth protocol for authorization. What do you need to pass in the header?
Basic
containing username and password joined by a colon.Basic
containing username and password joined by a colon, then encrypted using an HMAC algorithm.Basic
containing username and password joined by a colon, then encrypted using Base64.Basic
containing username and password joined by a colon, then encoded using Base64.