3

Our server is using a CA (certificate authority) which is not one of the CA's included on Android (Go Daddy). I am using Volley(https://android.googlesource.com/platform/frameworks/volley/) for my network requests, and therefore am unsure of how to deal with this issue. Since the example on the developer site (http://developer.android.com/training/articles/security-ssl.html), explains how to do it with like HttpUrlConnection.

Leo
  • 4,652
  • 6
  • 32
  • 42

1 Answers1

2

You have setup your server wrong. You also need to upload intermediate CA to your server. There has to be 2 certificates in your server.

When you execute the below line in you command line interface, you should see 2 certificates in "Certificate Chain" section.

openssl s_client -debug -connect api.metrekare.com:443
tasomaniac
  • 10,234
  • 6
  • 52
  • 84