gabriel / as3httpclient

HTTP Client for AS3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TLSEngine shutdown triggered by Error: Cannot verify certificate

armmywg opened this issue · 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);