我正在创建简短的URL,就像我们对微小的URL所做的那样,基于以下链接:
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#。
发布于 2011-07-22 10:42:14
<system.net>
<defaultProxy useDefaultCredentials="true">
<proxy usesystemdefault="False" proxyaddress="http://127.0.0.1:8888" bypassonlocal="True" />
</defaultProxy>
</system.net>通过使用useDefaultCredentials="true",我可以得到这些问题的答案。
https://stackoverflow.com/questions/6786484
复制相似问题