1

我目前在尝试从用户的 gmail 帐户中提取联系人时遇到问题。

在升级到 GWT 2.4 之前,这按要求工作,因为升级到 2.4(从 2.3)我们遇到了一个非常模糊的错误,导致它失败。

    try
    {
        myService.setUserCredentials(username, password);
    }
    catch (final AuthenticationException e)
    {
        //log exception
    }

    URL feedURL;

    try
    {
        feedURL = new URL("https://www.google.com/m8/feeds/contacts/default/full?max-results=1000");
    }
    catch (final MalformedURLException e)
    {
        //log exception
    }

    ContactFeed resultFeed;

    try
    {
        resultFeed = myService.getFeed(feedURL, ContactFeed.class);
    }
    catch (final IOException e) //Exception is caught here, see below
    {
        //log exception
    }
    catch (ServiceException e)
    {
        //log exception
    }

什么被抓住:

cause = ProtocolException
detailedMessage= "Missing WWW-Authenticate header"

java.net.ProtocolException: Missing WWW-Authenticate header

随着升级到 GWT 2.4,是否需要进行任何新的身份验证?我还没有找到任何可以说是这种情况的东西,特别是在他们的开发者指南中。

在这一点上,非常感谢任何建议。

4

1 回答 1

1

此问题是由第三方库引起的。该库使用的是 gdata 不兼容的 httpclient 1.0。

出于某种原因,gdata 试图使用过时的 1.0 而不是最新的进行通信。

于 2012-01-03T14:07:55.777 回答