-
-
Notifications
You must be signed in to change notification settings - Fork 874
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS 9 SSL Security Support #3
Comments
Hey @talkaboutdesign, |
Right I tested calling a simple query and would get errors back. Is this fixed with 1.8.0? |
Yes. We have switched in 1.8.0 to use NSURLSession (see |
Great. Thanks. |
As Richard indicates. PFFiles do not work with App Transport Security. The objects are loaded fine, but the URLs are hosted on Amazon's CDN with a custom domain names "parsetfss.com". Domain name does not match with amazon's SSL cert for "*.s3.amazonaws.com". Any timeline of this? |
Adding this to you info.plist should allow things to work for now. Or are there other domains involved as well? <key>NSExceptionDomains</key>
<dict>
<key>files.parsetfss.com</key>
<dict>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict> |
@jeroenleenarts As @richardjrossiii mentioned previously that we are aware that PFFiles are still using We are working on getting you |
@jeroenleenarts #12 is created for PFFile secure connection support, let's use that one for tracking it. |
Hello NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802) Did I miss something ? |
Hmm... This sounds strange. If you could paste just the domain name for the files that you have trouble downloading that would be super helpful as well. |
In fact this happens when I do query.findObjectsInBackgroundWithBlock That’s a simple query, I’m not downloading anything manually. Just to check, I downloaded the latest version of the SDK, removed the previous parse framworks (Parse, ParseUI, ParseCrashReporting, ParseFacebookUtilsV4, Bolts) and replaced them by their new version. Is there an issue doing like that ? Thanks
|
Nope, should just automatically work. |
Ah, I updated the Facebook SDK and added these : NSAppTransportSecurity
Now it works fine … maybe it was the FacebookSDK, not Parse. Thanks !
|
Please update framework to support latest iOS security measures in iOS 9.
The text was updated successfully, but these errors were encountered: