How to be sure that a user is in a group

135 Views Asked by At

When a user is added to a group using client.AddMemberToGroup(group_id, member_id) they are not appearing in the groups UI of the cPanel they are also not reported as a member when client.RetrieveAllMembers(group_id) is run.

However, when client.RetrieveGroups(member_id) is run it does return an entry in the feed for the group in question.

How do I know for sure which is correct? Is the person in the group or not?

How can I verify without doubt whether a given user is in a group or not?

I have already submited this as an issue into the issue tracker but wondered if anyone here has any ideas?

http://code.google.com/a/google.com/p/apps-api-issues/issues/detail?id=3327

1

There are 1 best solutions below

5
On

If it is a very large group, it may take some time for the full group list to be refreshed and the user to appear in it.

Try waiting 24 hours and checking the CPanel / RetrieveAllMembers() calls again.

In the meantime, you're doing things right using RetrieveGroups() to determine if the user is a member.

Update: The Google CPanel and the RetrieveAllMembers() calls will never show indirect group members but your RetrieveGroups() call has direct_only set to False meaning that indirect members are being returned. If the user's you are testing for membership are indirect members then your test results are consistent with what I would expect to see.

Can you try setting direct_only to True? If that results in RetrieveGroups() no longer returning True, then we know the issue is that the user is an indirect member.