Google Chrome 允许您复制执行的 xhr 请求并在 PowerShell 中重放它:
- 打开开发者工具 (F12)
-
打开网络选项卡
-
通过执行 Web 应用程序中的功能来触发网络请求
-
右键单击网络选项卡中的请求,然后“复制”,然后“复制为 PowerShell”
现在将其粘贴到 PowerShell 提示符中,您应该会得到与浏览器中相同的结果。
如果请求返回异常(http 错误代码),那么您可以使用以下代码获取有关错误的更多信息:
只需用复制的 xhr 请求替换文本“<< paste request from google Chrome here >>”。
try {
$webResponse = << paste request from google Chrome here >>
Write-Host “Response: $($webResponse)”
}
catch {
Write-Host “ErrorDetails: $($_.ErrorDetails)”
Write-Host “ExceptionResponse: $($_.Exception.Response)”
}
资源:
https://4sysops.com/archives/powershell-invoke-webrequest-parse-and-scrape-a-web-page/