我用這個API - https://www.google.com/m8/feeds/contacts/ {userEmail}/full 但是這個api只會讓你的朋友在聯繫人中。我想獲得建議的郵件,例如下面的SS。如何從gmail api獲取建議/自動完成的電子郵件?
我會在iOS應用中使用。
我用這個API - https://www.google.com/m8/feeds/contacts/ {userEmail}/full 但是這個api只會讓你的朋友在聯繫人中。我想獲得建議的郵件,例如下面的SS。如何從gmail api獲取建議/自動完成的電子郵件?
我會在iOS應用中使用。
gAuth.callAPI( 「https://www.google.com/m8/feeds/contacts/default/full?start-index=1&max-results=2500&alt=json」,withHttpMethod:httpMethod_GET,postParameterValues:無)
最大結果限制了你。
或
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:無)
重複一次,你應該添加25〜我 - >我+ = 25;