When I try to deploy my app I get the following error:
Starting update of app: flyingbat123, version: 0-1 Getting current resource limits. Password for avigmati: Trac
I know this doesn't answer the OP question, but it may help others who experience problems using --oauth2
mentioned by others in this question.
I have 2-step verification enabled, and I had been using the application-specific password, but found it tedious to look up and paste the long string every day or so. I found that using --oauth2
returns
This application does not exist (app_id=u'my-app-id')
but by adding the --no_cookies
option
appcfg.py --oauth2 --no_cookies update my-app-folder\
I can now authenticate each time by just clicking [Allow access] in the browser window that is opened.
I'm using Python SDK 1.7.2 on Windows 7
NOTE: I found this solution elsewhere, but I can't remember where, so I can't properly attribute it. Sorry.
.