Questions tagged [google-groups-api]
145 questions
29
votes
4 answers
Download all messages from a Google group
I'm in the process of developing a Google apps migration/archive system and at this point in development I'm trying to come up with a way to download all messages in all the groups that my domain users have created. I know that I can set up…

LexNix
- 377
- 1
- 3
- 10
6
votes
0 answers
Google API: list the groups the logged-in user belongs to
i have created an oauth2 workflow that correctly logs me in.
my scopes are:
https://www.googleapis.com/auth/groups
https://www.googleapis.com/auth/userinfo.email
when i go through the authorization process, it lists
"View and manage your Google…

Jimmy Keith
- 61
- 1
6
votes
1 answer
Non-interactive authorization with Google OAuth2
I have created a Java application that performs syncing of MS Active Directory with Google Groups. It is non-interactive application that suppose to be executed by the cronjob at night time.
It does work perfectly on my laptop (DEV environment).
My…

Gary Greenberg
- 468
- 1
- 9
- 22
6
votes
2 answers
403 Request rate higher than configured
When I'm adding members to Google Groups I'm receiving a 403 Request rate higher than configured error. This is happening for all applications, including the API Explorer on the Google developer website.
Even if I make only a single request in 12+…

Peter Godwin
- 267
- 3
- 12
5
votes
1 answer
Is there still "no API to manage consumer googlegroups.com groups programatically"?
In an answer to this 2014 post
Unable to retrieve members of a google group, getting Invalid Input
you read: "There is no API to manage consumer googlegroups.com groups programatically".
Is this still the situation in 2018?
I tried to follow the…

Roberto Scotti
- 121
- 1
- 8
5
votes
2 answers
Read messages programmatically from Google group
I'll like to run some analysis on messages that are stored in Google group which is part of Google apps domain (busines).
Is it possible to read them via API?

Ido Ran
- 10,584
- 17
- 80
- 143
5
votes
5 answers
Add members to google groups with the First Names and Surnames or Display Names addess
I want to add Email Addresses to Google Groups programmatically. While there are methods of doing so, none seem to allow the addition of the Display Names, Nicknames or just the First and Last names.
For example, the code (from Add members to…

Clement Victor Clarke
- 53
- 1
- 5
4
votes
1 answer
Unable to retrieve members of a google group, getting Invalid Input
I created a Google group from the Google Groups homepage and have added 5 users.
I am trying to use the Google Admin SDK API to retrieve the list of members from my group but whenever I try the API (from the API explorer) I get a 400 :
{
"error":…

J.Doe
- 41
- 3
4
votes
1 answer
Need help creating Coldfusion App to Google Group API
First, thanks in advance for anyone reading this post.
My school (I am a teacher/ technology coordinator) is using Google Apps for Education. I have used the Provisioning API to talk with our Microsoft Active Directory Server to synchronize users…

user2041230
- 51
- 1
3
votes
0 answers
Google groups API for non GSuite accounts?
The simple question is: Is the google groups API available for regular (not GSuite) google accounts?
I ask because though I followed the basic steps decribed here: https://developers.google.com/api-client-library/python/start/get_started, I always…

Derényi István
- 111
- 1
- 2
- 5
3
votes
2 answers
How to get the list of members in a Google group in Google app script (Admin SDK)?
I would like to get a list of members in a Google group using Admin SDK.
But im not getting how to do this. I found below link - https://developers.google.com/admin-sdk/directory/v1/guides/manage-group-members
But I do not know how to use POST…

Kanchan
- 65
- 2
- 11
3
votes
2 answers
Google Directory API - batch add members to a group
I am using the Google Admin SDK to create, update and delete mailing lists (aka groups).
Everything works fine so far and I can create a new group and add members to it. But: Every adding of a member takes about 1s so I was thinking of a batch…

Christian Lange
- 61
- 4
3
votes
1 answer
Google Groups API add Member
I have found lots of information on the internet about adding Members to a Group in Googlegroups, but I cant manage to get any of it to work.
I am working in Python-DJango.
Using a bussiness account, I manage to add them using Provisioning API, but…

ylc
- 199
- 1
- 3
- 9
3
votes
1 answer
Permission denied: Cannot hide from Groups directory
I'm trying to patch an existing group via the API but it's returning this error:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalid",
"message": "Permission denied: Cannot hide from Groups directory."
}
],
…

jsd
- 7,673
- 5
- 27
- 47
3
votes
1 answer
Get Google Group member's email delivery status
Within a group (using the web/gui), you can see 'bouncing', 'non-verified' etc. etc. next to a user.
Is there a way to get this info via the API?
Using python, I can use RetrieveAllMembers to ... retrieve all members. The returned GroupMemberEntry…

user1964454
- 31
- 3