[在swift5下使用Alamofire时如何无条件信任证书

问题描述 投票:-1回答:1

谁能告诉我在swift5下使用Alamofire时如何无条件信任证书,谢谢。

alamofire swift5
1个回答
0
投票

以下是我的答案,希望对以后遇到相同问题的人有所帮助。

扩展名ViewController:URLSessionDelegate {公共函数urlSession(_会话:URLSession,didReceive挑战:URLAuthenticationChallenge,complementHandler:@转义(URLSession.AuthChallengeDisposition,URLCredential?)->无效){让urlCredential = URLCredential(信任:Challenge.protectionSpace.serverTrust!)completeHandler(.useCredential,urlCredential)}}

© www.soinside.com 2019 - 2024. All rights reserved.