9

从 1.7.5 更新后(一切正常),我收到HTTP 错误 403:尝试通过 localhost 打开任何站点时被禁止。奇怪的是,我在家里的设置与在工作中的设置几乎相同,并且在那里一切正常……可能是我们在工作中使用的代理服务器有问题,因为这是我能想到的唯一区别?这是我得到的错误日志,所以如果有人知道发生了什么,请帮助 (;

Traceback (most recent call last):
  File "U:\Dev\GAE\lib\cherrypy\cherrypy\wsgiserver\wsgiserver2.py", line 1302, in communicate
    req.respond()
  File "U:\Dev\GAE\lib\cherrypy\cherrypy\wsgiserver\wsgiserver2.py", line 831, in respond
    self.server.gateway(self).respond()
  File "U:\Dev\GAE\lib\cherrypy\cherrypy\wsgiserver\wsgiserver2.py", line 2115, in respond
    response = self.req.server.wsgi_app(self.env, self.start_response)
  File "U:\Dev\GAE\google\appengine\tools\devappserver2\wsgi_server.py", line 246, in __call__
    return app(environ, start_response)
  File "U:\Dev\GAE\google\appengine\tools\devappserver2\request_rewriter.py", line 311, in _rewriter_middleware
    response_body = iter(application(environ, wrapped_start_response))
  File "U:\Dev\GAE\google\appengine\tools\devappserver2\python\request_handler.py", line 89, in __call__
    self._flush_logs(response.get('logs', []))
  File "U:\Dev\GAE\google\appengine\tools\devappserver2\python\request_handler.py", line 220, in _flush_logs
    apiproxy_stub_map.MakeSyncCall('logservice', 'Flush', request, response)
  File "U:\Dev\GAE\google\appengine\api\apiproxy_stub_map.py", line 94, in MakeSyncCall
    return stubmap.MakeSyncCall(service, call, request, response)
  File "U:\Dev\GAE\google\appengine\api\apiproxy_stub_map.py", line 320, in MakeSyncCall
    rpc.CheckSuccess()
  File "U:\Dev\GAE\google\appengine\api\apiproxy_rpc.py", line 156, in _WaitImpl
    self.request, self.response)
  File "U:\Dev\GAE\google\appengine\ext\remote_api\remote_api_stub.py", line 200, in MakeSyncCall
    self._MakeRealSyncCall(service, call, request, response)
  File "U:\Dev\GAE\google\appengine\ext\remote_api\remote_api_stub.py", line 226, in _MakeRealSyncCall
    encoded_response = self._server.Send(self._path, encoded_request)
  File "U:\Dev\GAE\google\appengine\tools\appengine_rpc.py", line 393, in Send
    f = self.opener.open(req)
  File "U:\Dev\Python\lib\urllib2.py", line 410, in open
    response = meth(req, response)
  File "U:\Dev\Python\lib\urllib2.py", line 523, in http_response
    'http', request, response, code, msg, hdrs)
  File "U:\Dev\Python\lib\urllib2.py", line 448, in error
    return self._call_chain(*args)
  File "U:\Dev\Python\lib\urllib2.py", line 382, in _call_chain
    result = func(*args)
  File "U:\Dev\Python\lib\urllib2.py", line 531, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 403: Forbidden
INFO     2013-04-19 12:28:52,576 server.py:561] default: "GET / HTTP/1.1" 500 -
INFO     2013-04-19 12:28:52,619 server.py:561] default: "GET /favicon.ico HTTP/1.1" 304 -

此外,启动器在关闭时会引发错误:

Traceback (most recent call last):
  File "launcher\mainframe.pyc", line 327, in OnStop
  File "launcher\taskcontroller.pyc", line 167, in Stop
  File "launcher\dev_appserver_task_thread.pyc", line 82, in stop
  File "launcher\taskthread.pyc", line 107, in stop
  File "launcher\platform.pyc", line 397, in KillProcess
pywintypes.error: (5, 'TerminateProcess', 'Access is denied.')
4

3 回答 3

4

在使用 Google App Engine Launcher 1.8.6 使用代理服务器时,我的 MacOSX 也遇到了同样的问题。显然,“urllib2.py”上的“proxy_bypass”存在问题。

有两种可能的解决方案:

  1. 降级到 1.7.5,但是,谁想降级?
  2. 编辑“[GAE 安装路径]/google/appengine/tools/appengine_rpc.py”并查找显示的行

    opener.add_handler(fancy_urllib.FancyProxyHandler())

在我的计算机中是第 578 行,然后在行首放一个井号 (#),如下所示:

`#opener.add_handler(fancy_urllib.FancyProxyHandler())`

保存文件,停止然后重新启动您的应用程序。现在 dev_appserver.py 根本不应该尝试使用任何代理服务器。

如果您的应用程序使用任何外部资源,如 SOAP Web 服务或类似的东西,并且您无法在没有代理服务器的情况下访问服务器,那么您将不得不降级。请记住,外部 javascript 文件(如 facebook SDK 或类似文件)是从您的浏览器加载的,而不是从您的应用程序加载的。

因为我没有使用任何外部 REST 或 SOAP 服务,所以它对我有用!

希望它也对你有用。

于 2013-10-18T22:41:35.733 回答
1

尝试任一: - 通过不同的代理访问它。即一个。代理中的代理 - 通过您的本地 IP 访问它,即 192.168.1.1

于 2013-08-10T23:47:57.770 回答
0

我在 1.9.5 版中遇到了同样的问题。似乎 API 代理正在向代理服务器发送一些 RPC,然后这些 RPC 被 HTTP 403 拒绝(因为代理服务器通常配置为拒绝对任意端口的连接尝试)。在我的情况下,我使用urlfetch我的应用程序中的模块来访问外部网页,所以禁用代理服务器不是我的选择。

这就是我一段时间前解决这个问题的方法(很可能是基于在这个问题下找到的评论,但我不记得确切的来源)。

笔记:

  • 要使这种方法起作用,您必须知道代理服务器的主机名/IP 地址和默认端口,如果您碰巧连接到不同的代理服务器,请在代码中适当地更改它们。
  • 当您不在代理服务器后面时,您必须恢复应用的更改才能返回工作状态(如果您希望在应用程序中访问 Internet)。

它是这样的:

  1. 以某种方式禁用 Python(Google App Engine Launcher)环境的代理设置。(在我的情况下,这很容易,因为我是dev_appserver.py从终端 shell(在 Linux 上)启动的,unset http_proxyandunset https_proxy命令起到了作用。)

  2. 编辑{App Engine SDK root}/google/appengine/api/urlfetch_stub.py. 找到代码块

    if _CONNECTION_SUPPORTS_TIMEOUT:
        connection = connection_class(host, timeout=deadline)
    else:
        connection = connection_class(host)
    

    (在我的情况下为第 376-379 行)并将其替换为:

    if _CONNECTION_SUPPORTS_TIMEOUT:
        if host[:9] == 'localhost' or host[:9] == '127.0.0.1':
            connection = connection_class(host, timeout=deadline)
        else:
            connection = connection_class('your_proxy_host_goes_here', your_proxy_port_number_goes_here, timeout=deadline)
    else:
        if host[:9] == 'localhost' or host[:9] == '127.0.0.1':
            connection = connection_class(host)
        else:
            connection = connection_class('your_proxy_host_goes_here', your_proxy_port_number_goes_here)
    

    替换占位符your_proxy_host_goes_hereyour_proxy_port_number_goes_here使用适当的值。

    (我相信这段代码可以写得更优雅,不过......那里有任何 Python 极客吗?:))

  3. 在我的情况下,我还必须删除现有的编译文件urlfetch_stub.pyc(与 位于同一目录中urlfetch_stub.py),因为 SDK 似乎在我这样做之前没有接收到更改。

现在您可以使用dev_appserver来启动您的应用程序,并urlfetch在应用程序内使用 -backed 服务,而不会出现 HTTP 403 错误。

于 2015-02-15T12:59:03.410 回答