从Google Api获取联系人

时间:2014-08-06 09:38:25

标签: google-api google-contacts

我在获取用户表单Google的联系时遇到问题。所以问题是谷歌联系人也提供用户的移动联系人(如果同步到谷歌),我不想向用户显示。这是我的代码:

        $.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 
});

我只想要那些有电子邮件的记录,我试图通过电子邮件排序。我不知道这是一种正确的方法。

1 个答案:

答案 0 :(得分:0)

As stated in the documentationsortedBy支持的唯一参数是lastmodified。您必须检索所有联系人,然后在代码中进行过滤。