gpt4 book ai didi

html - Powershell Web 抓取 SSL/TLS 问题

转载 作者:太空狗 更新时间:2023-10-29 15:21:40 25 4
gpt4 key购买 nike

我想在服务器上运行网络抓取脚本。

当前脚本采集指定页面的html。

$url = "http://websms"
[net.httpWebRequest] $request = [net.webRequest]::create($url)
[net.httpWebResponse] $response = $request.getResponse()
$responseStream = $response.getResponseStream()
$sr = new-object IO.StreamReader($responseStream)
$result = $sr.ReadToEnd()

$result

这在典型的网页上运行良好。但是我想在服务器管理页面上运行它,这当然需要登录。

我想在我尝试登录之前我会尝试抓取服务器的登录页面。运行上面的脚本我得到以下结果。

   Exception calling "GetResponse" with "0" argument(s): "The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel."
At C:\temp\web3.ps1:3 char:56
+ [net.httpWebResponse] $response = $request.getResponse <<<< ()
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : DotNetMethodException

关于如何解决此问题的任何想法,或者您是否可以为我指出不同的方向,以便我可以从服务器的管理 html 页面中抓取元素。

谢谢大家!

最佳答案

这一行将忽略 SSL 证书错误:

[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}

关于自签名不受信任的证书、不匹配的名称或过期的错误将在执行后被忽略。

关于html - Powershell Web 抓取 SSL/TLS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9917875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com