1,184
社区成员
发帖
与我相关
我的任务
分享
var
resp: string;
http: IXMLHTTPRequest ;
begin
http:= CoXMLHTTP60.Create();
http.open('Get', 'https://halfrost.com/tls1-3_start/', false, EmptyParam, EmptyParam);
http.send(EmptyParam);
resp := http.responseText;
end;