Error 401 Unauthorized (invalid OAuth token) during deployment of AppEngine with the Eclipse plugin

I am trying to deploy a fairly large application through, unfortunately, a rather slow internet connection from Eclipse. After something like 15-30 minutes during the file upload, the deployment process is aborted using error 401 Unauthorized (Invalid OAuth Token). Is this a timeout in some login cookies, or am I doing something else wrong?

Workaround: Fortunately, AppEngine is smart enough not to reload identical files, so I just need to โ€œroll back the applicationโ€ and try deploying again. In the end, all the files are downloaded, and everything is in order. Just really annoying ...

Thank,

Marcus

+5
source share
1 answer

It happened to me. Several crashes load 3000+ files after I localized and the code split my GWT application.

My solution is to define an external tool to run appcfg.cmd and load this path.

Run menu | External Tools | External Tools Configurations...
Location: ...\appengine-java-sdk-1.7.0\bin\appcfg.cmd
Working Directory: ${project_loc}
Arguments: update ./war
+1
source

All Articles