I'm occasionally getting this error when making volley requests. It's strange because it will sometimes work and sometimes not work.
com.android.volley.NoConnectionError: java.io.IOException: Hostname '--url--' was not verified
According to this: http://developer.android.com/training/articles/security-ssl.html it has to do with hostname verification but my API call ALWAYS works on a browser and like I mentioned earlier, sometimes works on Android via Volley.
Has anyone experienced this before?
I've seen similar issues mentioned here, but none relating to Volley. They all basically point to using a NullHostNameVerifier (java.io.IOException: Hostname was not verified), which I don't know if it can be done on Volley...