as3httpclient icon indicating copy to clipboard operation
as3httpclient copied to clipboard

TLSEngine shutdown triggered by Error: Cannot verify certificate

Open armmywg opened this issue 4 years ago • 0 comments

When using https to get data, it prompts "TLSEngine shutdown triggered by Error: Cannot verify certificate"

var client:HttpClient = new HttpClient(); var uri:URI = new URI("https://www.baidu.com/"); uri.scheme = "https"; uri.port = "443"; var variables:Array = [ { name: "fname" } ]; client.postFormData(uri,variables);

armmywg avatar Feb 27 '21 13:02 armmywg