Google-app-engine 1.9.19 Deploy Failure
Solution 1:
It's an issue with Google App Engine SDK, which doesn't allow the user authentication process to be completed, if local server is running.
Step 1. Stop the local server.
Step 2. Click on 'Deploy'
Step 3. You should get a message "The authentication flow has completed."
Step 4. Close the Window.
Step 5. Deploy again using Google App Engine. You should receive a message You
can close this window now.
Solution 2:
you just have to shut down the server I use the google app engine luncher run and stop then deploy
Solution 3:
Sorry about that - the tooling is in the process of changing. The docs should be updated shortly.
Try gcloud preview app deploy path-to/your.yaml --project myProjectID
Solution 4:
You can deploy successfully in 1.9.19 by using command line.
appcfg.py update myapp/
Use an application-specific password instead of your regular account password.
In any case, you'll get a message that:
now the recommended way to log in is using OAuth2. See https://developers.google.com/appengine/docs/python/tools/uploadinganapp#Python_ Password-less_login_with_OAuth2
Solution 5:
If you are having problems with the redirection to localhost:8085
, you can try to use wget
from the server you're trying to authenticate, something like:
wget http://localhost:8085/?code=4/SOMELONGKEY#
After this you should be logged.
Post a Comment for "Google-app-engine 1.9.19 Deploy Failure"