Questions tagged [google-groups-api]
145 questions
0
votes
1 answer
How to get groupwise Email Ids in google?
We are using Google for corporate since last 5 years. There have been many dozens google groups created by different site/business division/local administrators. Now we need to know, for each employee, which all groups he is a part of. Does google…

hitesh.gawhade
- 337
- 3
- 6
- 21
0
votes
1 answer
Google Gropus API with old account
I need to modify group settings with Google Groups API on my old google for business account. I use web request:
PUT
https://www.googleapis.com/groups/v1/groups/
request body: {
"whoCanPostMessage": "ALL_MEMBERS_CAN_POST"
}
headers: {
…

warownia1
- 2,771
- 1
- 22
- 30
0
votes
0 answers
How do I programmatically access Google Groups archives?
I want to get the text of recent Google Groups messages from a specific group in a Google Apps organization. The group is used for announcements, and I want to mirror this announcement text on a Python-powered website.
How can I get this text…

Slix
- 666
- 5
- 8
0
votes
1 answer
Check if current user is the administrator of a certain Google group
I want to go through all the Google groups I am a member of and get the list of all the users of each group :
var list = GroupsApp.getGroups();
for(var i = 0; i< list.length; i++){
for(var key in headerObj){
var text = "";
…

Bayrem Ben Alaya
- 297
- 1
- 3
- 16
0
votes
4 answers
Keeping Consistent Count in Google App Engine
I am looking for suggestions on a very common problem on Google App Engine platform for keeping consistent counters.
I have a task to load the groups of a domain and then create a task for each group to load its group members in a separate task.…

Gaurav Sachdeva
- 652
- 1
- 10
- 23
0
votes
1 answer
Group Setting API : Error 401
I am using Google Admin SDK API to provision users/group in Google using Stand alone C# code and all operations including create user, update user, create group, add member, get member ,search user etc are working perfectly fine now I am trying to…

anurag tripathi
- 21
- 1
0
votes
1 answer
Python Retrieving all Groups from a domain using OAuth2
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…

user1816974
- 29
- 6
0
votes
1 answer
Google Groups Java API - Unsubscribe a domain user from an external group
We're wanting to unsubscribe a domain user from an external group that they are a member of. For example :
mike@domain.com is a member of group@externalgroup.com
Is there a way through the API to remove mike@domain.com as a member of…

mike.schlanser
- 121
- 1
- 6
0
votes
1 answer
Google group word count for members?
I have a google group, and I'd like to figure out how many words each member has posted. Is there a utility to do this?
If not, how can I get started writing a Python script to do this? Should I just grab XML from the group's feed and look through…

Nick Heiner
- 119,074
- 188
- 476
- 699
0
votes
1 answer
Google App Engine (python): Authenticate by Google Group
I was able to set up my GAE application to only allow users from our Google Domain, but I want to take this a step further. All of our users are placed into specific Google Groups based on their roles within the community. For example, Contributors…

rgutierrez1014
- 396
- 4
- 9
0
votes
1 answer
Google Groups Migration API not permitting any API Requests
I'm having trouble getting the Google Groups Migration API to work properly. I can get access to the API, but I can't do anything once I have access.
In the developer playground, under the Select & Authorize APIs heading, I add this custom scope…

Ben Downey
- 2,575
- 4
- 37
- 57
0
votes
2 answers
How to get additional fields from Google groups API
I would like to list all groups on my google domain that has specific "type" (team,domain, etc.)
when i use the groups.list() method using directory API i get all the groups.
does anybody knows about a way to query by fields so the returned list…
0
votes
1 answer
OAuth 2.0 Authorization and Group Manager feature with Google's New Directory API for .NET library
We are currently using the "Deprecated Provisioning API" using the .NET libraries for creating Google Groups within our organization. Provisioning API does support adding Group Members with Manager role. As a work around, we would like to build…
0
votes
2 answers
i need to make a java.net url fetch with a json request. Please tell me how can i call that using java in google appengine
This is my HTTP URL
POST HTTPS://www.googleapis.com/admin/directory/v1/group
MY json request
{
"email": "sales_group@example.com",
"name": "Sales Group",
"description": "This is the Sales group."
}
I am using Directory API to create…

Bharathi
- 451
- 1
- 6
- 17
0
votes
1 answer
batch request on google group api with oauth2-playground
I'm trying to understand (and eventually make it work) batch request on the google group API.
With Oauth2 Playground I know how to perform a single request with:
on step 1 authorised API…

Harold
- 3,297
- 1
- 18
- 26