Go教程

PowerShell 执行从 Google Chrome 复制的 xhr 请求获取原始内容响应

本文主要是介绍PowerShell 执行从 Google Chrome 复制的 xhr 请求获取原始内容响应,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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/

这篇关于PowerShell 执行从 Google Chrome 复制的 xhr 请求获取原始内容响应的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!