アプリケーションを Apache sslv3 サーバーに接続しようとすると、tidsdk が「SSL 接続エラー」を報告します。
var url = 'https://www.sipmeeting.com/';
var client = Ti.Network.createHTTPClient({
onload: function(e) {
//request complete do something with data
//assuming that we are not working with XML
alert('Response received '+this.responseText);
},
onerror: function(e) {
//error received, do something
}
});
client.open('GET',url,true);
client.send();
tidsdk sslv3 は互換性がありますか? https://mail.google.com/mailのような他のサイトは正常に開きます
お手伝いありがとう!
--ジョン