Using PYTHON, To get all groups in a domain, in OAuth1 had a command like:
groupfeed = api(lambda: GROUPS_SERVICE.RetrieveAllGroups())
In OAuth2, will it be
allGrps = client.groups().list(customer='my_company').execute()
I am looking for the equivalent code to get ALL groups in a domain. Thanks for your help and attention.
If you have more than 200 groups, the results will be paged and returned over multiple API calls. You need to keep retrieving pages until none are left:
also notice that it's my_customer, not my_company.