谷歌应用程序引擎授权
请帮忙。如何验证用户的组成员身份?只有少数 Google 群组的用户可以访问 appengine (python) 网站上的某些页面。
验证群组成员资格对我的问题给出了否定答案,但它已经是一年前的事了,也许有些事情已经改变了。
Please, help. How can I validate user's group membership? Only users of a few google groups can access some pages on the site on appengine (python).
validating group membership gives a negative answer to my question, but it was a year ago, maybe something has changed..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前没有 Google 网上论坛 API,因此无法确定用户是否是 Google 网上论坛的成员。
There's currently no Google Groups API, and thus no way to determine if a user is a member of a Google Group.
可能会迟到,但对于发现此问题的其他人来说,这是我的解决方案:
在驱动器中创建一个新的 AppScript,然后将其发布为 Web 服务,您可以使用类似以下代码的内容来检查用户是否在组中:
之后发布它,您将获得一个可以访问的网址,只需附加 [email protected]< /a> 查询特定电子邮件地址的组成员资格。
May be late but just for others who find this, here's my solution to this:
Create a new AppScript in drive which you then publish as webservice, you can use something like following code to check if a user is in the group or not:
After publishing it, you will get a url which you can access, just append [email protected] to query group membership for the specific email address.