NSURLSession/NSURLConnection HTTP load failed on iOS 9

前端 未结 13 1493
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 05:20

Tried to run my existing app on iOS9 but getting failure while using AFURLSessionManager.

__block NSURLSessionDataTask *task = [self.sessionMana         


        
13条回答
  •  庸人自扰
    2020-11-22 06:12

    This is what worked for me when I had this error:

    NSAppTransportSecurity
    
        NSExceptionDomains
        
            example.com
            
                NSExceptionRequiresForwardSecrecy
                
                NSTemporaryExceptionAllowsInsecureHTTPLoads
                
                NSIncludesSubdomains
                
                NSTemporaryExceptionMinimumTLSVersion
                TLSv1.0
            
        
    
    

提交回复
热议问题