我正在创建简短网址,因为我们根据链接创建了小网址:
http://www.emadibrahim.com/2009/05/07/shortening-urls-with-bitlys-api-in-net/
但是我收到了一个错误:
The remote server returned an error: (407) Proxy Authentication Required.
如何解决此问题?
我正在使用C#。
答案 0 :(得分:0)
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy usesystemdefault="False" proxyaddress="http://127.0.0.1:8888" bypassonlocal="True" />
</defaultProxy>
</system.net>
使用 useDefaultCredentials =“true”我可以解决问题。