SoFunction
Updated on 2025-04-03

iOS10 ATS configuration details

Some Thoughts on iOS10 ATS Configuration

ATS cannot restrict IP addresses

Assume that the api to be called is /foo/bar/doSth

  1. If the server address is, /foo/bar/doSth will be intercepted by ATS because it is unsafe
  2. If the server address is 221.233.20.115:9090, then http://221.233.20.115:9090/foo/bar/doSth will not be intercepted by ATS, even if it is using the http protocol
  3. This is also mentioned in my other translation article Apple Document Translation iOS10 NSAppTransportSecurity

Third-party SDKs also need to comply with ATS rules

That is, third-party SDKs also have the risk of being filtered by ATS. Currently known are:

  1. aurora
  2. Youmeng
  3. Baidu Map

Configuration example

The following examples are configured as follows:

iOS10

  1. Web View can load any content (NSAllowsArbitraryLoadsInWebContent)
  2. All its subdomains (for example, API and image server) can be accessed using http connection
  3. All its subdomains can be accessed using http connection (third-party SDKs also need to comply with ATS rules, so they need to list all third-party SDK domains that still use http requests and add them to exceptions)

iOS9

ATS is completely shut down (NSAllowsArbitraryLoads)

  <key>NSAppTransportSecurity</key>
  <dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
    <key>NSAllowsArbitraryLoadsInWebContent</key>
    <true/>
    <key>NSExceptionDomains</key>
    <dict>
      <key></key>
      <dict>
        <key>NSExceptionAllowsInsecureHTTPLoads</key>
        <true/>
        <key>NSIncludesSubdomains</key>
        <true/>
      </dict>
      <key></key>
      <dict>
        <key>NSIncludesSubdomains</key>
        <true/>
        <key>NSExceptionAllowsInsecureHTTPLoads</key>
        <true/>
      </dict>
    </dict>
  </dict>

Thank you for reading, I hope it can help you. Thank you for your support for this site!