Google App Engine : this application does not exist

后端 未结 9 1153
囚心锁ツ
囚心锁ツ 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:35

    At least as of 2017-06-22, it's not enough to create a cloud project. You have to go to the App Engine section of cloud console and choose a language. When it's done saying "Preparing your App Engine services..." then you can deploy.

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

    I had same error message:

    This application does not exist (project_id=u'xxxx-123456'). To create an App Engine application in this project, run "gcloud app create" in your console.

    I solved it by executing below command:

    gcloud app create
    

    It will create app inside your project and assign selected region.

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

    the problem was different name which i changed from rightClick project ->appenginesettings->ApplicationId .

    this name should be same in your google account

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

    You have to login under developer or owner to deploy application. This is bottom left icon in eclipse.

    Also check your application name. If id of application correct and user you login has role owner/developer for this application - you will deploy.

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

    Deleted .appcfg_oauth2_tokens c:/usrs/etc worked for me after a long overdue upgrade to python27.

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

    Removing the oauth2 token file ~/.appcfg_oauth2_tokens or specifying a different token store file file with the flag "--oauth2_credential_file" might be a permanent solution. MacOSX GoogleAppEngineLauncher.app does not let you change this flag/path when you push the deploy button.

    appcfg.py --oauth2_credential_file=~/.appcfg_oauth2_tokens_myappid
    
    0 讨论(0)
提交回复
热议问题