1

AuthSub トークンを受け取り、それを使用して Google からすべての連絡先を取得します。コードスニペット

try {
    URL feedUrl = new URL("https://www.google.com/m8/feeds/contacts/default/base?max-results=" + maxresult);
    ContactsService service = new ContactsService("Google-contactsExampleApp-1");
    service.setAuthSubToken(sessionToken, getPrivateKey());

    ContactFeed resultFeed = service.getFeed(feedUrl, ContactFeed.class);
    ArrayList<UserContact> ucList = new ArrayList<UserContact>(resultFeed.getEntries().size());
    for (ContactEntry entry : resultFeed.getEntries()) {
        if (entry == null || entry.hasDeleted()) {
            continue;
        }
        ucList.add(parseEntry(entry));
    }
    return ucList;
} catch (Exception e) {
    LOGGER.log(Level.WARNING, null, e);
    return null;
}

しかし、エラーを下回っています:

java.lang.NullPointerException: No authentication header information
at com.google.gdata.util.AuthenticationException.initFromAuthHeader(AuthenticationException.java:96)
at com.google.gdata.util.AuthenticationException.<init>(AuthenticationException.java:67)
at com.google.gdata.client.http.HttpGDataRequest.handleErrorResponse(HttpGDataRequest.java:600)
at com.google.gdata.client.http.GoogleGDataRequest.handleErrorResponse(GoogleGDataRequest.java:563)
at com.google.gdata.client.http.HttpGDataRequest.checkResponse(HttpGDataRequest.java:552)
at com.google.gdata.client.http.HttpGDataRequest.execute(HttpGDataRequest.java:530)
at com.google.gdata.client.http.GoogleGDataRequest.execute(GoogleGDataRequest.java:535)
at com.google.gdata.client.Service.getFeed(Service.java:1135)
at com.google.gdata.client.Service.getFeed(Service.java:998)
at com.google.gdata.client.GoogleService.getFeed(GoogleService.java:631)
at com.google.gdata.client.Service.getFeed(Service.java:1017)
4

2 に答える 2

0

このフィード URL を試してください。常に、デフォルトとアクセス トークンの代わりに認証済みの電子メール ID を追加してください。

feedUrl = new URL("https://www.google.com/m8/feeds/contacts/"+userEmail+"/full?access_token="+access);
于 2015-01-21T11:46:19.663 に答える