Under iOS 9, I've used the accepted answer here: Transport security has blocked a cleartext HTTP
I added the entries to my Info.plist file under NSAppTransportSecurity
. My app seems to be functioning properly, as well as executing all of the requests for which I've accounted for. I am still receiving the error:
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
My problem is that I can't find where in my app codebase this is coming from and I do NOT want to allow all domains (lazy option referenced in the accepted answer I credited). Is there a way to raise an exception for it so that I can find the source of the warning?