从命令提示符注销到在谷歌应用程序上上传应用程序
我正在 Windows 中的命令提示符下借助 appcfg.py 命令上传 Google 应用程序引擎应用程序。
但是在一次登录后,我想从同一命令提示符上传另一个应用程序,但我不能,因为第二个应用程序对当前登录没有权限,所以我想在命令提示符下从该会话注销,那么该怎么办?这是一个Python应用程序
有没有任何命令可以从命令提示符注销?
I am uploading google app engine application with the help of appcfg.py command from command prompt in windows.
But after one login I want to upload another application from the same command prompt but i cannot because this second application has no rights with the current login so i want to logout from this session on command prompt so for that what to do? It is a python application
Is there any command to logout from command prompt?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
--no_cookies
运行 appcfg.py 来告诉它不要存储身份验证 cookie,或者使用-e EMAIL
来指定与当前电子邮件地址不同的电子邮件地址。曲奇饼。You can run appcfg.py with
--no_cookies
to tell it not to store authentication cookies, or-e EMAIL
to specify an email address that differs from the one in the current cookie.