任何人都可以解释我通过python登录这个链接(ftpservice.acesphere.com)
答案 0 :(得分:0)
你得到这个例外:
urllib2.HTTPError: HTTP Error 401: Unauthorized
这意味着该网站正在返回HTTP 401 Unauthorized状态代码。捕获异常或修改您的请求以避免产生此错误。
答案 1 :(得分:0)
您尝试访问的URL需要NTLM身份验证。您可以尝试python-ntlm包:
try
{
...
}
catch (const Exception&)
{
::MessageBox(NULL, L"Error", L"Error", 0); // <-- Crash happens here,
// BEFORE the message box is displayed
}