我用过这个api - https://www.google.com/m8/feeds/contacts/ {USEREMAIL} /全 但这个api只能让你的朋友联系。我希望得到建议的邮件,例如下面的SS。
我将在ios app中使用。
答案 0 :(得分:2)
gAuth.callAPI(" https://www.google.com/m8/feeds/contacts/default/full?start-index=1&max-results=2500&alt=json",withHttpMethod:httpMethod_GET,postParameterValues:nil)
最大结果限制由你决定。
或
var i = 1;
gAuth.callAPI(" https://www.google.com/m8/feeds/contacts/default/full?start-index=\(i)&max-results=2500&alt=json",withHttpMethod:httpMethod_GET,postParameterValues:nil)
每次重复你都要加25到i - > i + = 25;