gpt4 book ai didi

powershell - 如何在 Powershell 中发出经过身份验证的 Web 请求?

转载 作者:行者123 更新时间:2023-12-03 06:21:26 25 4
gpt4 key购买 nike

在 C# 中,我可能会这样做:

System.Net.WebClient w = new System.Net.WebClient();
w.Credentials = new System.Net.NetworkCredential(username, auth, domain);
string webpage = w.DownloadString(url);

是否有 Powershell 版本,或者我应该直接调用 CLR

最佳答案

PowerShell 几乎完全相同。

$webclient = new-object System.Net.WebClient
$webclient.Credentials = new-object System.Net.NetworkCredential($username, $password, $domain)
$webpage = $webclient.DownloadString($url)

关于powershell - 如何在 Powershell 中发出经过身份验证的 Web 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/508565/

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