Wildcards on ATS Domain exceptions?

前端 未结 2 808
不知归路
不知归路 2021-01-16 09:58

In my production Xamarin apps, we retrieve a non-defined list of HLS playlist within differents domains. Is possible to use wildcards on the ATS exception dictionary?
I

2条回答
  •  渐次进展
    2021-01-16 10:27

    Try this :

    NSAppTransportSecurity
    
        NSExceptionDomains
        
            domain.com
            
                 NSExceptionRequiresForwardSecrecy
                 
                 NSExceptionAllowsInsecureHTTPLoads
                 
                 NSIncludesSubdomains
                 
            
        
    
    

提交回复
热议问题