来自Google App Engine部署的错误消息“您无权修改此应用”

时间:2016-03-09 18:46:04

标签: google-app-engine

我按照http://beta.appinventor.mit.edu/learn/reference/other/tinywebdb.html上的说明,尝试为我教授的10年级课程创建自定义TinyWebDB。创建新项目后(说明创建应用程序,但我只看到创建新项目按钮),我在本地文件app.yaml文件中更改项目名称,加载它,然后单击Deploy。我收到以下错误消息:

Starting update of app: npicswebdb, version: 1
01:35 PM Getting current resource limits.
2016-03-09 13:35:26,727 ERROR appcfg.py:2396 An error occurred processing file '': HTTP Error 403: Forbidden Unexpected HTTP status 403. Aborting. 
Error 403: --- begin server output ---
You do not have permission to modify this app (app_id=u's~npicswebdb').
--- end server output ---
2016-03-09 13:35:26 (Process exited with code 1)

我是否需要登录App Engine Launcher以便在云中连接我的App Engine?关于这样做的说明中没有任何内容,我也没有在启动器中看到任何方法。

感谢您的帮助。

3 个答案:

答案 0 :(得分:3)

尝试添加" - no_cookies":

appcfg.py - 项目名称更新app.yaml - no_cookies

答案 1 :(得分:1)

  1. 删除以下内容的Cookie文件:var threadId = GmailApp.getMessageById(messageId).getThread().getId();
  2. 重新运行您的命令,它将提示从浏览器登录并将令牌复制粘贴回终端。

答案 2 :(得分:0)

类似于其他答案。我遇到了同样的问题,删除那些存储的凭据对我有帮助,即:

rm ~/.appcfg_oauth2_tokens_java 
rm ~/.appcfg_cookies

在此处找到更多详细信息:IT Code Hub - AppEngine deployment