As Jack Cox noted, Parse TLS does not reach tobacco. But you just need to add an exception for the api.parse.com domain, and the exception should only accept less secure ciphers. See This Apple Tech Note on Vehicle Security.
Here's what you need to add to your Info.plist :
<key>NSAppTransportSecurity</key> <dict> <key>NSExceptionDomains</key> <dict> <key>api.parse.com</key> <dict> <key>NSExceptionRequiresForwardSecrecy</key> <false/> </dict> </dict> </dict>
UPDATE:. Parsing sent a message yesterday that they will renew their certificates on 8/11/2015, which should get rid of the need for this. I will update the answer when this happens.
source share