英文:
Cannot deploy with goapp - invalid username or password
问题
在尝试使用以下命令登录时,出现“无效的用户名或密码”错误:
goapp deploy myapp/
这是按照Google App Engine Go教程进行操作时出现的问题。
英文:
Getting an invalid username or password
error after trying to sign in with
goapp deploy myapp/
following the Google App Engine Go tutorial.
答案1
得分: 2
为了得到一个实际的答案,使用以下命令:
goapp deploy -oauth -application <projectid>
这样就可以工作了。感谢 @ntsh 提供的解决方法
英文:
Just for the sake of having the answer as an actual answer:
use the following
> goapp deploy -oauth -application <projectid>
and it will work. Credit to @ntsh for this
答案2
得分: 0
goapp
似乎缺乏文档。无论如何,它使用appcfg.py
,所以你可以直接使用以下命令更新应用程序:
appcfg.py update . --noauth_local_webserver
英文:
goapp
seems to be lacking in documentation. Anyway it uses appcfg.py
, so you can directly update app with:
appcfg.py update . --noauth_local_webserver
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论