thiagolocatelli / parse4j

Java Library to deal with Parse (parse.com) REST API
http://thiagolocatelli.github.io/parse4j
143 stars 117 forks source link

Connection failed with Parse servers : unable to find valid certification path to requested target #80

Closed tanzeelrana closed 7 years ago

tanzeelrana commented 7 years ago

My code :

Parse.initialize("XXXX", "XXXX", "https://pacecouriers.com/parse"); ParseQuery<ParseObject> query = ParseQuery.getQuery("GameScore"); query.getInBackground("xWMyZ4YEGZ", new GetCallback<ParseObject>() { public void done(ParseObject object, ParseException e) { if (e == null) { // object will be your game score } else { // something went wrong } } }); `

I am getting the following error when :

Connection failed with Parse servers. Log: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

tanzeelrana commented 7 years ago

its not a parse4J related issue. had to do something with my server security so gonna close this issue