我想使用gdata库获取Google帐户的名字和姓氏。我有auth令牌(我把它从android设备 - 它发送到我的java servlet-然后应该插入到mysql数据库中的第一个,最后一个,显示名称和provider_uid(provider_uid是https://www.google.com/accounts/o8/id?id=AItOawmyn的形式)。 ..))。
我使用了这样的联系人Feed(没有成功):
public String tryGoogleAuthentication(String auth_token){
ContactsService contactsService = new ContactsService("...");
contactsService.setUserToken(auth_token);
//contactsService.setAuthSubToken(auth_token);
ContactFeed feed = null;
try {
feed = contactsService.getFeed(new URL("https://www.google.com/m8/feeds/contacts/" + "someEmail@gmail.com" + "/full?max-results=10000"), ContactFeed.class);
} catch (IOException e) {
e.printStackTrace();
return CONST.GOOGLE_AUTH_INVALID_TOKEN;
} catch (ServiceException e) {
e.printStackTrace();
return CONST.GOOGLE_AUTH_INVALID_TOKEN;
} catch (NullPointerException e) {
e.printStackTrace();
return CONST.GOOGLE_AUTH_INVALID_TOKEN;
}
if (feed == null)
return "";
String externalId = feed.getId();
Person person = feed.getAuthors().get(0);
String email = person.getEmail();
String name = person.getName();
String nameLang = person.getNameLang();
String extensionLocalName = person.getExtensionLocalName();
String uri = person.getUri();
System.out.println("externalId: " + externalId);
System.out.println("email: " + email);
System.out.println("name: " + name);
System.out.println("nameLang: " + nameLang);
System.out.println("extension local name: " + extensionLocalName);
System.out.println("URI: " + uri);
System.out.println(feed.getSelf().getEntries().get(0).getTitle().getPlainText());
return CONST.STATUS_OK;
}
另外,
System.out.println("ID: " + feed.getSelf().getEntries().get(0).getId());
将输出:
ID: http://www.google.com/m8/feeds/contacts/someEmail%40gmail.com/base/c....
但我想要这样的事情:
https://www.google.com/accounts/o8/id?id=AItOawmyn...
我需要将其插入现有数据库。
请注意,我只想要该帐户的信息,而不是它的联系人。
谢谢,
亚历