标签: swift alamofire
如何使用Alamofire SDK进行SSL链接?
我需要连接到HTTPS URL,以便在Swift 4.0中使用Alamofire在Code中启用SSL证书设置。
答案 0 :(得分:0)
默认情况下,Alamofire会连接到HTTPS网址。
可以使用
Alamofire.request("https://example.com") .response { response in //Handle the response here }