google-groups-api

Google Group Settings API enabled for service accounts?

丶灬走出姿态 提交于 2019-12-12 05:09:22
问题 Most of the Google Management APIs seem to have been enabled for Service Accounts. For example, I can retrieve calendars like so: string scope = Google.Apis.Calendar.v3.CalendarService.Scopes.Calendar.ToString().ToLower(); string scope_url = "https://www.googleapis.com/auth/" + scope; string client_id = "999...@developer.gserviceaccount.com"; string key_file = @"\path\to\my-privatekey.p12"; string key_pass = "notasecret"; AuthorizationServerDescription desc = GoogleAuthenticationServer

ZIndex on Clusters

耗尽温柔 提交于 2019-12-07 19:31:51
问题 I am attempting to add custom labels to a map such that the labels are visible on top of the clusters I created using MarkerClusterer. I set the zindex of the labels to 1000. How do I set a zindex on a cluster. I know how to do it with a marker but am not sure how to apply a zindex value to each of my cluster icons. I'd appreciate any help with this. Thanks, G 回答1: Thanks for the hint. Got it to work myself: var pane=this.getPanes().overlayMouseTarget; 回答2: You could try to add your custom

Non-interactive authorization with Google OAuth2

▼魔方 西西 提交于 2019-12-07 04:37:51
问题 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 problem is that on the first run it pops up browser window with the dialog asking to authorize access to the Google API. After I click on "Allow" button it happily proceeds to the end. Now I need to move it to production server which runs CentOS

ZIndex on Clusters

混江龙づ霸主 提交于 2019-12-06 13:27:41
I am attempting to add custom labels to a map such that the labels are visible on top of the clusters I created using MarkerClusterer. I set the zindex of the labels to 1000. How do I set a zindex on a cluster. I know how to do it with a marker but am not sure how to apply a zindex value to each of my cluster icons. I'd appreciate any help with this. Thanks, G Thanks for the hint. Got it to work myself: var pane=this.getPanes().overlayMouseTarget; You could try to add your custom labels to a map pane that sits above the clusters. See http://code.google.com/apis/maps/documentation/javascript

Google Groups Post Permissions

家住魔仙堡 提交于 2019-12-06 11:50:42
I have used both GAM and the Google Groups API to script the following: "whoCanPostMessage":"ALL_IN_DOMAIN_CAN_POST" By default, this also includes ALL_MEMBERS_CAN_POST. I DO_NOT want members to be able to post. Is there any way to exclude All_Members when you want ALL_IN_DOMAIN?? (I know I could do it manually, one-by-one, through the Google Admin Console, but that would be very tedious and time consuming) Please help! According to the Groups Settings API documentation , possible settings for this attribute are: NONE_CAN_POST ALL_MANAGERS_CAN_POST ALL_MEMBERS_CAN_POST ALL_IN_DOMAIN_CAN_POST

Non-interactive authorization with Google OAuth2

早过忘川 提交于 2019-12-05 08:57:50
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 problem is that on the first run it pops up browser window with the dialog asking to authorize access to the Google API. After I click on "Allow" button it happily proceeds to the end. Now I need to move it to production server which runs CentOS and does not have a browser. When I run my application in this environment it prints the following

Issue with Google Drive API and group sharing

痞子三分冷 提交于 2019-12-03 08:58:59
I'm facing an issue with an application I'm developing using Google Drive. I have a Google group with some users inside, and I share a collection with this group. When I try to find this collection using Google Drive API (files().list()), as one of the users of this group, the collection shows up properly. However, if I add another user to the group (either using API or Google CPanel), and try to find the collection using Google Drive API as this user, the collection doesn't show up, as if the user is not able to see it even though he is in a group allowed to see the collection. If I manually

Google Groups API add Member

…衆ロ難τιáo~ 提交于 2019-12-02 00:42:25
问题 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 I could not do it with the new Directory API. The problem is the group I want to add people to is not a business one, it's an ordinary googlegroups one: group_name@googlegroups.com From what I have found, and what I did for the business group I

Download all messages from a Google group

隐身守侯 提交于 2019-11-30 03:04:47
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 forwarding filters and have all messages archived to an email, but this doesn't help with older messages. Is there a way to download these messages from a Google group and if so, is there away in the admin API to get a list of all groups that users have created? If you don't mind using #bash, you may try a tool I wrote https://github.com/icy/google-group

Download all messages from a Google group

依然范特西╮ 提交于 2019-11-29 00:45:26
问题 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 forwarding filters and have all messages archived to an email, but this doesn't help with older messages. Is there a way to download these messages from a Google group and if so, is there away in the admin API to get a list of all groups that users have