2016-03-09 30 views
1

我按照http://beta.appinventor.mit.edu/learn/reference/other/tinywebdb.html上的說明嘗試爲我所教的10年級課程創建自定義TinyWebDB。創建新項目後(說明中說創建一個應用程序,但我只看到一個新建項目按鈕),我在本地文件app.yaml文件中更改項目名稱,加載它並單擊部署。我收到以下錯誤消息:來自Google App Engine部署的錯誤消息「您無權修改此應用」

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啓動器,以便它與雲中的App Engine連接?在這些指令中沒有任何關於這樣做的信息,我也沒有看到在啓動器中執行該操作的任何方法。

感謝您的幫助。

回答

2

嘗試增加 「--no_cookies」:

appcfg.py -A項目名稱更新的app.yaml --no_cookies

+0

它是這樣工作的魅力。謝謝。 –

相關問題