Access Localhost API using Alamofire

567 Views Asked by At

my url https://localhost:44301/api/authenticate swift 5 Alamofire 5+

above local host is working on my swagger and on postman with ssl disabled I get proper response

private let session: Session = {
    let manager = ServerTrustManager(evaluators: ["localhost:44301": DisabledTrustEvaluator()])
    let configuration = URLSessionConfiguration.af.default

    return Session(configuration: configuration, serverTrustManager: manager)
}()

//POST method call using Alamofire
let strURL = https://localhost:44301/api/authenticate
session.request(strURL, method: .post, parameters: parameters, encoding: JSONEncoding.default, headers: headers).responseJSON {
...
//handle response
}

Error I get

Url : https://localhost:44301/api/Authenticate, Parameters : {"userNameOrEmailAddress":"admin","password":"123qwe"}
failure(Alamofire.AFError.serverTrustEvaluationFailed(reason: Alamofire.AFError.ServerTrustFailureReason.noRequiredEvaluator(host: "localhost")))
serverTrustEvaluationFailed(reason: Alamofire.AFError.ServerTrustFailureReason.noRequiredEvaluator(host: "localhost"))

I have tried localhost instead of localhost:44301 in ServerTrustManager, still same error

1

There are 1 best solutions below

1
On

You need create custom session

private let session: Session = {
    // Create the server trust manager
    let serverTrustManager = ServerTrustManager(evaluators: ["localhost": DisabledTrustEvaluator()])
    
    // Create custom session
    let configuration = URLSessionConfiguration.default
    configuration.headers = .default
    let man = Session(
        configuration: URLSessionConfiguration.default,
        serverTrustManager: serverTrustManager
    )
    return man
}()

and after

session.request(url).response { response in
    switch response.result {
    case let .success(data):
        debugPrint("data = \(data)")
    case let .failure(error):
        debugPrint("error = \(error)")
    }
}