“登录谷歌”eclipse kepler按钮无法打开谷歌登录窗口?

时间:2014-09-02 05:27:32

标签: eclipse google-app-engine authentication

我在ubuntu 12.04 LTS机器上使用Eclipse Kepler和Google App Engine v1.9.10。点击"登录谷歌"它不会打开它显示的登录窗口错误提到下面提到的错误

"无法加载页面 加载网址https://accounts.google.com/o/oauth2/auth?client_id=130316539331.apps.googleusercontent.com&redirect_uri=urn:ietf:wg:oauth:2.0:oob&response_type=code&scope=https://www.googleapis.com/auth/appengine.admin%20https://www.googleapis.com/auth/drive%20https://www.googleapis.com/auth/drive.scripts%20https://www.googleapis.com/auth/projecthosting%20https://www.googleapis.com/auth/sqlservice%20https://www.googleapis.com/auth/userinfo%23email

时出现问题

无法解析代理hostname()"。 谁能请帮忙。我有应用程序上传到GAE。有没有办法可以在eclipse中构建应用程序,然后从ubuntu终端上传它们。

2 个答案:

答案 0 :(得分:2)

您可以使用命令行上传您的应用程序,如下所示[1]:

appcfg.sh update myapp/war

或Python或PHP应用程序[2]:

appcfg.py update myapp/

代理主机名错误似乎与您的系统代理设置有关(StackOverflow的偏离主题),但您可以尝试在启动Eclipse之前设置'no_proxy'环境变量作为解决方法:

export no_proxy=127.0.0.1,localhost
eclipse &

[1] Uploading and Managing a Java App
[2] Uploading, Downloading, and Managing a Python App

答案 1 :(得分:1)

在ubuntu 12.04

  1. 打开系统设置
  2. 选择网络。
  3. 选择网络代理。
  4. 将方法设置为无
  5. 并且瞧...谷歌登录链接在eclipse中打开。