问题标签 [google-groups-api]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
google-groups - 谷歌群组 API
一个澄清和建议问题 - https://developers.google.com/apps-script/service_groups是完整的 Google Groups API 页面吗?我已经通读了它,但无法破译该 API 是否允许我从另一个站点插入它并根据需要从组中删除/添加用户。我可能只是被有大量可用示例的 Google Maps API 宠坏了,但这可能吗?我想与公共和私人团体互动。谢谢。
google-apps-script - 如何从 Google Group 中删除帖子?
如何使用 Google Apps 脚本从 Google 群组中删除帖子?
如何获取主题列表?
python - How to add member to Google Group
I have an appengine project where I am attempting to add a user to a Google group.
I am using a GroupsProvisioningClient
in order to do so.
When I add a certain user to the group the code appears to work (no error is reported) but the user doesn't show up in the groups front end, not if I loop through RetrieveAllMembers
.
When I attempt to RetrieveGroupMember('group_email', 'user_email')
I get an error:
But when I attempt to manually add this user in the groups front end I also get an error:
So I'm not sure what's going in, is or isn't my user in the group? How can I check? Is my code wrong?
http-status-code-503 - Google Groups Migration API 提供 503“后端错误”
从 Group Migration API 的 Insert 方法 (https://developers.google.com/google-apps/groups-migration/v1/reference/archive/insert) 获取以下 503 响应。
我只是在尝试使用示例有效负载来解决峰值问题——尽管如果我摆弄 POST,我会得到 401 或 404 错误;无法创建 400 错误。有其他人成功使用此 API 吗?服务是否存在临时服务问题?
谢谢!克里斯
要求:
回复:
permissions - Google 网上论坛发帖权限
我使用 GAM 和 Google Groups API 编写以下脚本:
"whoCanPostMessage":"ALL_IN_DOMAIN_CAN_POST"
默认情况下,这还包括 ALL_MEMBERS_CAN_POST。
我不希望成员能够发帖。
当你想要 ALL_IN_DOMAIN 时,有什么方法可以排除 All_Members 吗?
(我知道我可以通过 Google 管理控制台一个一个地手动完成,但这会非常乏味和耗时)
请帮忙!
google-groups-api - 为服务帐户启用了 Google Group Settings API?
大多数 Google Management API 似乎已为服务帐户启用。例如,我可以像这样检索日历:
但是,GroupssettingsService 上的相同代码返回 503 - 服务器不可用。这是否意味着服务帐户不能与该 API 一起使用?
在一个可能相关的问题中,组设置服务的范围似乎是,apps.groups.settings
但是如果您致电
...你得到appsgroupssettings
了,没有嵌入的句点。
是否有另一种方法可以为 GroupssettingsService 使用服务帐户?或有关正确范围字符串的任何信息?
非常感谢。
google-groups-api - Group Settings API 中的新设置...这些是否已公布?
我注意到 Google Group Settings API 中的一些新设置……这些是公布的吗?我们应该在哪里寻找这样的公告?
google-groups - Google Groups:检索用户的组列表
是否有一个 API 可以获取用户所属的所有 Google 组的列表(当然,在他/她的许可下),反之亦然(给定一个 Google 组,让所有用户成为该组的一部分)。
google-groups - 获取 Google Group 成员的电子邮件发送状态
在一个组内(使用 web/gui),您可以在用户旁边看到“弹跳”、“未验证”等。有没有办法通过 API 获取这些信息?
使用 python,我可以使用 RetrieveAllMembers 来……检索所有成员。返回的 GroupMemberEntry 对象没有用户的“状态”(因为没有更好的词)。
我的目标是:1) 转储我域中的所有组 2) 检查组的弹跳地址 3) 向组所有者发送有关错误地址/用户的电子邮件。
我可以做#1 和#3。这是我需要帮助的#2。
api - 需要帮助将 Coldfusion 应用程序创建到 Google Group API
首先,提前感谢任何阅读这篇文章的人。
我的学校(我是一名教师/技术协调员)正在使用 Google Apps for Education。我已使用 Provisioning API 与我们的 Microsoft Active Directory Server 通信,以将用户和组与 Google 同步。我有一个运行 ColdFusion 9 和 PHP 的网络服务器。我是一个公平的 ColdFusion 程序员的基础,我的 PHP 技能是新手级别。
我至少有 3028 个组我想更新replyTo
字段说REPLY_TO_LIST
(默认情况下,创建组时,用户可以选择)
理想情况下,我希望 ColdFusion 服务器自动(每晚)联系 Google,获取域中所有组的列表(用户有权创建组,因此该列表可能每天更改)并确保回复字段设置正确。
目前,我在使用 OAuth 2.0 时遇到问题。我已阅读文档并且对我需要做什么感到困惑。我一直在寻找整个互联网,并发现了很多我头脑中的材料。我得到的最接近的是Ray Camden的一篇很棒的帖子。但是,当我为 Google Groups 修改它时,我得到:
错误:invalid_request 缺少必需参数:response_type
但是, response_type 肯定存在。
我很确定这是我的问题的开始,我发现了多个不同的参考,例如:
这是我目前在 GoogleGroupModifier.cfm 中的内容:
和 Application.cfc:
任何人都可以提供任何建议吗?我知道有关于 GITHUB 的信息,但是我在那里尝试过的东西似乎也无法开始工作。