在 Google App Engine 网络应用程序中,除了 Google 身份平台之外,还有哪些身份验证选项?

On Google app engine web applications, what are the authentication options other than Google identity platforms?

是否可以在不使用 Google 身份平台(但可能是用户常用的平台)的情况下创建 Google 应用引擎 (python) 网络应用程序的登录/身份验证页面在其他域上有电子邮件)? 注意:其他电子邮件地址域不是其他社交媒体应用程序。

Google AppEngine 是一个通用平台,您可以实施任何支持 Web 的身份验证选项。例如 Facebook Connect、Linked In、GitHub 等

有关实施细节,请参阅特定的身份验证平台文档。

我推荐 Flask。它具有您寻求的所有内置身份验证:登录、注销、发送电子邮件验证、重置密码、会话、CSRF 保护等:

http://flask.pocoo.org/

Google 帐户不需要@gmail.com 域。如前所述 here 接受其他电子邮件域。当您访问 "Google account signup page" 时,单击 "Use my current email address instead" 以使用它。

您可以像 Alexander Trakhimenok 提到的那样实施另一个身份验证平台,但我不明白这对您有何帮助。