Android Question Getting error message with https://www.google.com using OkHttpUtils2

seskindell

Active Member
Licensed User
Longtime User
Error message: ResponseError. Reason: javax.net.ssl.SSLHandshakeException: com.android.org.bouncycastle.jce.exception.ExtCertPathValidatorException: Could not validate certificate: Certificate not valid until Tue Jun 19 07:38:49 EDT 2018 (compared to Tue Jan 02 03:36:48 EST 2018), Response:

Code:
Dim j As HttpJob
j.Initialize("", Me)
j.Download("https://www.google.com")
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
End If
j.Release

Please help.
 
Top