Alamofire 5无方法sessionDidReceiveChallenge

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

[我在alamofire 4中使用了sessionDidReceiveChallenge,但是升级到alamofire后,我找不到任何此类方法,请帮助并指导我如何实施此方法。

ios swift xcode alamofire
1个回答
0
投票

只需将凭证附加到请求:

AF.request(...)
    .authenticate(with: yourCertCredential)
    .response...
© www.soinside.com 2019 - 2024. All rights reserved.