c# 4.0 - Shortening url using bit.ly -


i creating short urls have done tiny url, based on link:

http://www.emadibrahim.com/2009/05/07/shortening-urls-with-bitlys-api-in-net/

but getting error:

the remote server returned error: (407) proxy authentication required. 

how can resolve issue?

i'm using c#.

<system.net>              <defaultproxy usedefaultcredentials="true">             <proxy usesystemdefault="false" proxyaddress="http://127.0.0.1:8888"   bypassonlocal="true" />   </defaultproxy>   </system.net> 

by using usedefaultcredentials="true" can ride of problems.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -