BasicAuthenticator
public struct BasicAuthenticator: IAuthenticatorThe BasicAuthenticator class is an authenticator that will authenticate using HTTP Basic auth with the given username and password. This should only be used over an SSL/TLS connection, as otherwise it’s very easy for anyone sniffing network traffic to read the password.
- 
                  
                  The username. DeclarationSwift public let username: String
- 
                  
                  The password. DeclarationSwift public let password: String
- 
                  
                  Initializes with the username and password. DeclarationSwift public init(username: String, password: String)ParametersusernameThe username passwordThe password 
 BasicAuthenticator Structure Reference
        BasicAuthenticator Structure Reference