0
我在我的Perl腳本中運行了一個curl請求,並且如果密碼或用戶名包含任何特殊字符(&),它會中斷url。請讓我知道我該如何解決這個問題。特殊字符包含在密碼中,它打破了URL
my $json="curl --user $userName:$password http://git.sample.com/rest/api/1.0/projects/TEAMS/repos/ ";
my $decodedJson = decode_json($json);
使用Perl模塊像'WWW :: Curl'代替CMDLINE呼叫 – Jens
我找Perl中的天然方法是不使用捲曲,但使用LWP ::原生方式 – gihan
的UserAgent代替。 – simbabque