我有问题,而获得用户的联系形式谷歌。所以问题是谷歌联系人包含用户的移动联系人(如果同步到谷歌),我不想显示给用户。下面是我的代码:
$.get("https://www.google.com/m8/feeds/contacts/default/full?alt=json&access_token=" + authResult.access_token + "&max-results=500&start-index=" + gPageInd + "&sortorder=ascending&sortBy=emails&v=3.0",function(response)
{
//code here
});
我只想要那些有电子邮件的记录,为此我尝试按电子邮件排序。我不知道这样做是否正确。
根据文档说明,sortedBy
唯一支持的参数是lastmodified
。您必须检索所有联系人,然后在代码中进行过滤。