iOS 9 ATS and Firebase REST
I am building a simple iOS app that talks to Firebase using REST API. Essentially, I am using NSURLSession.sharedSession().dataTaskWithRequest to connect to https://myusername.firebaseio.com/Object.json The app works fine in iOS 8. I am able to pass GET/PUT/PATCH/DELETE to manipulate my data. But since iOS 9 introduced ATS, I now have the https error: NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, CFNetwork SSLHandshake failed) I am fully aware of the workaround solution in Info.plist. However, I want to utilize the new safety feature in iOS 9. I checked Firebase