低于<dependency>
<groupId>package group id</groupId>
<artifactId>package artifact id</artifactId>
<version></version>
<exclusions>
<exclusion>
<groupId>group id to be excluded</groupId>
<artifactId>artifact id to be excluded</artifactId>
</exclusion>
</exclusions>
</dependency>
代理功能仅支持 https 接收质询。
NSURLSession
在func URLSession(session: NSURLSession, didReceiveChallenge challenge: NSURLAuthenticationChallenge, completionHandler: (NSURLSessionAuthChallengeDisposition, NSURLCredential?) -> Void)
中,我在下面列出了允许所有连接的内容:
Info.plist
也支持http,但<key>NSAppTransportSecurity</key>
<dict>
<!--Include to allow all connections (DANGER)-->
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
代表根本没有触发。
NSURLSession
- 如何支持 http NSURLSession
?
如果它也适用于 authentication challenge
第三方框架,它也会很有用。