google-app-engine - 谷歌应用引擎是否提供访问控制解决方案?

标签 google-app-engine

在谷歌应用引擎中运行的应用程序是否有可用的访问控制解决方案?我对 IP 白名单特别感兴趣。

最佳答案

关于管理控制台,可以使用三种角色。

查看者、开发者和所有者。

https://developers.google.com/appengine/docs/adminconsole/roles

此外,您可以限制特定域中用户的访问权限。

但你可能想要这个:

https://developers.google.com/appengine/docs/python/gettingstarted/usingusers

然后您可以强制用户通过谷歌(或其他一些选择)登录,然后您可以看到他们的唯一 ID。然后,您可以使用该唯一 ID 授予或拒绝访问您站点的各个部分。

https://developers.google.com/appengine/docs/python/tools/webapp/utilmodule

Google App Engine provides several useful services based on Google infrastructure, accessible by applications using libraries included with the SDK. One such service is the Users service, which lets your application integrate with Google user accounts. With the Users service, your users can use the Google accounts they already have to sign in to your application. Blockquote

关于google-app-engine - 谷歌应用引擎是否提供访问控制解决方案?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12353336/

相关文章:

python - Google Eclipse 插件 - 使用 Python

google-app-engine - 获取 Google App Engine 发布版本的源代码

java - 使用 Spring 和 App Engine 任务队列处理非英语 URL

python - App Engine "ImportError: No module named msvcrt"上的 Django 1.7

python - Google App Engine urlfetch DeadlineExceededError 推送任务处理程序运行 apiclient 批处理请求

java - 如何通过 Google Cloud Endpoints 接收 <ArrayList>?

java - Jsoup 在 Google App Engine 上运行不正确

python - Python 中的 header 检查 (GAE)

Google App Engine 以外的 Python 云托管?

java - 如何从非 GWT(但 Java)gapplication 在服务器上调用 GWT RPC 方法?