google api python client - Filtering connections by group or label -


the google people api allows list of contacts:

  resultset = service.people().connections().list(   resourcename='people/me',   pagesize=100,   personfields=('names,emailaddresses,organizations,photos,phonenumbers')) 

is there way filter results contact group? couldn't find source code list method ...

thanks!

there isn't way filter contact group in list call. 2 options have are:

  1. do get on contact group list of personids in contact group. batchget personids.
  2. get contacts , filter them yourself

Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -

minify - Minimizing css files -