2

我正在尝试使用以下代码从 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 在服务器端有限制吗?例如,我们只能通过网络浏览器或智能手机访问它。

4

2 回答 2

1

在 REST 服务中,HTTP 消息是协议的一部分,404 可能意味着服务正常但找不到您的用户。您是否尝试过其他用户?或者也许你可以在 api 上有一个默认的测试用户。

于 2012-06-15T11:51:47.943 回答
1

我对 Zimbra 没有任何线索,但在您的 URL"http://"+HOST+":"+PORT+"/home/"+USER+"/contacts?fmt=csv"中,USERvar 似乎应该被一个真实的用户名替换,例如bob。但是在 404 响应中,您请求的 url 是:/service/home/USER/contacts。在我看来,您想向用户请求联系人USER,但没有使用此名称的用户。这样对吗?

于 2012-06-15T07:11:43.777 回答