我正在检索用户的联系人组。我必须按分页显示组。所以我这样做,
URL feedUrl1 = new URL("https://www.google.com/m8/feeds/groups/"+userEmail+
"/full/?xoauth_requestor_id"+userEmail+"&start-index=10&max-results=5");
ContactGroupFeed resultFeed1 = contactService.getFeed(myQuery, ContactGroupFeed.class);
上面的查询显示从 10 开始的结果并显示所有记录。它不是基于 检索结果max-results
。有什么不对吗?我还有什么选择?