0

它可以使用 WebRequest 但我使用 chilkat 因为它支持 ssh 但我无法获取我网站的 html

Chilkat.Http http = new Chilkat.Http();
bool success;
//  Any string unlocks the component for the 1st 30-days.
success = http.UnlockComponent("Anything for 30-day trial");
if (success != true) {
    Console.WriteLine(http.LastErrorText);
    return;
}
//  Send the HTTP GET and return the content in a string.
string html;
html = http.QuickGetStr("https://mmo4me.com/");
TextBox1.Text = html;
4

1 回答 1

0

您提到的网站 ( https://mmo4me.com ) 正在使用 TLS1.2 ECDHE/ECDSA 进行哈希算法签名。

并且看起来 Chilkat 组件不支持 ECDHE/ECDSA。

于 2015-07-01T16:27:53.750 回答