App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure.

后端 未结 2 1741
别那么骄傲
别那么骄傲 2021-01-29 08:42

Supposedly temporary exceptions can be configured via your app\'s Info.plist file. Following other answers, I added this entry to the info.plist but it does not help (even worse

相关标签:
2条回答
  • 2021-01-29 09:00

    @SamHeather I tried to post this in Comments, but apparently too long.. This is white listing Facebook domains which is mandatory for the Facebook SDK integration. You can change these of course to fit your needs.

    Currently whitelisted are: akamaidhd.net, facebook.com, and fbcdn.net.

    You could change these like such for example:

    <key>(your domain name) </key>
                    <dict>
                        <key>NSIncludesSubdomains</key>
                        <true/>
                        <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                        <false/>
                    </dict>
    

    Facebook white listing below:

    <key>NSAppTransportSecurity</key>
    <dict>
            <key>NSAllowsArbitraryLoads</key>
            <true/>
            <key>NSExceptionDomains</key>
            <dict>
                <key>akamaihd.net</key>
                <dict>
                    <key>NSIncludesSubdomains</key>
                    <true/>
                    <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                    <false/>
                </dict>
                <key>facebook.com</key>
                <dict>
                    <key>NSIncludesSubdomains</key>
                    <true/>
                    <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                    <false/>
                </dict>
                <key>fbcdn.net</key>
                <dict>
                    <key>NSIncludesSubdomains</key>
                    <true/>
                    <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
                    <false/>
                </dict>
            </dict>
        </dict>
    
    0 讨论(0)
  • 2021-01-29 09:24

    From Project Navigator click your project's name.

    Now, on the right side you' ll see the General Tab of your project. Select the Info and in the Customs iOS Target Properties add a new type.

    Name it as NSAppTransportSecurity, type as Dictionary. Inside that add a new item and name it as NSAllowsArbitraryLoads, type as Boolean, value YES.

    Hope that will solve your problems.

    0 讨论(0)
提交回复
热议问题