我想向資源(該資源位於代理之後)發出請求。我也有代理地址和端口。我曾嘗試用NetworkCredentialn
沒有成功,CacheCredentials
沒有成功。引發WebException是:C#407需要代理驗證
WebResponse response = request.GetResponse();
我已經做到了這一點:
ProtocolError
The remote server returned an error: (407) Proxy Authentification Required
我一直在這條線得到錯誤 Package manager in Visual Studio 2015 "407 (Proxy Authentication Required)"
我試圖配置我app.config文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
<defaultProxy useDefaultCredentials="true" />
</system.net>
</configuration>
我認爲這裏的「請求」是一個WebRequest?你是否設置了代理屬性? https://msdn.microsoft.com/zh-cn/library/system.net.webrequest.defaultwebproxy(v=vs.110).aspx或https://msdn.microsoft.com/zh-cn/library/system .net.webrequest.proxy(v = vs.110).aspx在您傳遞的代理對象中,您可以設置用於使用代理進行身份驗證的憑據。 – ADyson