我收到 AuthSub 令牌并使用它从谷歌检索所有联系人。代码片段
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)