我正在尝试使用以下代码从 Zimbra 下载联系人:
public static void getHTTPFile() {
HttpClient client = new HttpClient();
List<String> authPrefs = new ArrayList<String>(2);
authPrefs.add(AuthPolicy.DIGEST);
authPrefs.add(AuthPolicy.BASIC);
client.getParams().setParameter(AuthPolicy.AUTH_SCHEME_PRIORITY, authPrefs);
client.getState().setCredentials(
new AuthScope(HOST, new Integer(PORT).intValue(), AuthScope.ANY_REALM),
new UsernamePasswordCredentials(NAME, PASSWORD)
);
GetMethod get = new GetMethod("http://"+HOST+":"+PORT+"/home/"+USER+"/contacts?fmt=csv");
get.setDoAuthentication(true);
try {
int status = client.executeMethod(get);
System.out.println(status + "\n" + get.getResponseBodyAsString());
} catch (IOException e) {
e.printStackTrace();
} finally {
get.releaseConnection();
}
}
但我收到错误 404 (Not Found) :
13 juin 2012 08:40:47 org.apache.commons.httpclient.auth.AuthChallengeProcessor selectAuthScheme
INFO: Basic authentication scheme selected
404
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"/>
<title>Error 404 no such item</title>
</head>
<body><h2>HTTP ERROR 404</h2>
<p>Problem accessing /service/home/USER/contacts. Reason:
<pre> no such item</pre></p><hr /><i><small>Powered by Jetty://</small></i><br/>
我的网址错了吗?关于文档似乎不是。
认证有问题吗?我没有收到错误 401(未经授权)。
任何想法?
谢谢你的帮助。
编辑:
Zimbra 在服务器端有限制吗?例如,我们只能通过网络浏览器或智能手机访问它。