我尝试使用批量请求使用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);