我正在尝试使用方便的启动器部署我的 GAE 应用程序,但由于我的帐户使用 2 因素身份验证,这有点困难:
Password for <me>@gmail.com: Use an application-specific password
instead of your regular account password.
See http://www.google.com/support/accounts/bin/answer.py?answer=185833
However, now the recommended way to log in is using OAuth2. See
https://developers.google.com/appengine/docs/python/tools/uploadinganapp#oauth
在上面的网页上,我被指示简单地--oauth2
输入以下选项appcfg.py
:
appcfg.py --oauth2 update myapp/
如果我在命令行上,那会很简单,但如果我使用的是 GAE 启动器,我该如何使用 OAuth2?我看到添加命令行选项的唯一地方是在本地运行应用程序,而不是部署。