Error when deploying Google App Engine

0

I try to deploy the example application of Google App Engine within my own project that I created in the Google developed console, and I added the project ID and in theory it should work.

But the console to view the Deployment in IntellijIDEA throws this information.

  

Beginning interaction for module default ...

     

Password for [email protected]:   java.lang.RuntimeException: Bad authentication response: 404 Not Found   Unable to update app: Bad authentication response: 404 Not Found   Please see the logs [/tmp/appcfg6920280188625618051.log] for further   information. Failed to deploy 'helloworld: war exploded': Process   terminated with exit code 1

I already checked the documentation and it's practically the only thing that I have to change to work without problems.

    
asked by Max Sandoval 04.05.2016 в 17:09
source

1 answer

0

Two things to consider:

  • The version of app engine that you use in your project, check that it is the most recent.

  • In the configuration of your profile (maven for example), check that you have authentication enabled by means of OAuth , it is easier and you only have to authenticate once to be able to make several deployments, otherwise you have to generate a token for every time you want to publish.

  • answered by 04.05.2016 / 17:43
    source