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:
- do get on contact group list of personids in contact group. batchget personids.
- get contacts , filter them yourself
Comments
Post a Comment