Info.plist App Transport Security exception

I have a fetch i’m performing on a non https domain. The domain is pre-defined, so i just need to add it to the exception list in the plist, but can’t see how

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSExceptionDomains</key>
    <dict>
        <key>localhost</key>
        <dict>
            <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
            <true/>
        </dict>
    </dict>
</dict>

translates to…

"infoPlist": {
...
}

Say for example my address i want to white list is http://something.com

Ta

I could really use some guidance on this if anyone has any suggestions!

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.