Google创建联系人Api v3 - 在批量请求中,所有联系人都获得了contactID但只有少数插入了

时间:2016-01-28 14:16:04

标签: google-api google-apps google-api-java-client google-contacts google-apps-marketplace

我尝试使用批量请求使用Google创建联系人api客户端库插入4000个联系人。谷歌退回了4000个谷歌联系人ID。当我尝试使用该联系人ID获取联系人时,观察到大约1000个联系人正确插入并且剩余的是空联系人。甚至交叉检查谷歌联系人UI和通过API也。这个问题的任何原因。

Samplecode:

BatchUtils.setBatchId(newEntry, "create");
BatchUtils.setBatchOperationType(newEntry, BatchOperationType.INSERT);
requestFeed.getEntries().add(newEntry); //requestFeed is ContactFeed and newEntry is ContactEntry
postUrl=new URL("https://www.google.com/m8/feeds/contacts/default/full/batch?xoauth_requestor_id=" + loginUser);
ContactFeed responseFeed =conService.batch(postUrl,requestFeed);

0 个答案:

没有答案