Google App Engine : this application does not exist

后端 未结 9 1154
囚心锁ツ
囚心锁ツ 2020-12-17 10:01

When i deploy my application in GAE , i get this error

      This application does not exist (app_id=u\'qsse-ss\').

scenario is that this

相关标签:
9条回答
  • 2020-12-17 10:49

    That happened to me as well when I provided a username that wasn't an owner/developer, and even specifying a different account with -e or --email didn't work. What fixed was this:

    appcfg.py update . --no_cookies
    

    (same as: https://stackoverflow.com/a/10004722)

    0 讨论(0)
  • 2020-12-17 10:51

    That also happend to me when I change the email to create new appid for goagent.

    My solution is delete cookie file in the server directory:

    rm server/.appcfg_cookies
    

    then, everything is ok!

    0 讨论(0)
  • 2020-12-17 10:56

    You have to make sure that application name in your GAE local client matches the one in your Google account. Check the app.yaml file to make sure that the name of application matches there as well.

    0 讨论(0)
提交回复
热议问题