当服务器绑定到特定IP(不是localhost)时,如何使Google App Engine python SDK Remote API与本地开发服务器一起使用?

使用远程api(remote_api_
shell.py)在生产服务器上正常工作.但是,它仅在开发服务器在localhost上提供时才在开发服务器上运行.当服务器在特定IP上运行时,它不起作用(例如,dev_appserver.py –host = 192.168.0.1).

这是使用Python SDK.我确信这适用于1.7.5版本.它不适用于1.7.6或1.8.0.

这是一个特定的案例:

运行服务器并将其绑定到默认地址(localhost:8080):

/path/to/dev_appserver.py myapp/app.yaml
INFO     2013-05-25 19:11:15,071 sdk_update_checker.py:244] Checking for updates to the SDK.
INFO     2013-05-25 19:11:15,323 api_server.py:152] Starting API server at: http://localhost:39983
INFO     2013-05-25 19:11:15,403 dispatcher.py:98] Starting server "default" running at: http://localhost:8080
INFO     2013-05-25 19:11:15,405 admin_server.py:117] Starting admin server at: http://localhost:8000

启动远程API shell,它工作正常:

$./remote_api_shell.py -s localhost:8080
Email: x@x
Password: 
App Engine remote_api shell
Python 2.7.2+ (default, Jul 20 2012, 22:15:08) 
[GCC 4.6.1]
The db, ndb, users, urlfetch, and memcache modules are imported.
dev~furloughfun> 

但是,如果使用指定的主机启动服务器:

/path/to/dev_appserver.py --host=192.168.0.1 myapp/app.yaml
INFO     2013-05-25 19:11:53,304 sdk_update_checker.py:244] Checking for updates to the SDK.
INFO     2013-05-25 19:11:53,554 api_server.py:152] Starting API server at: http://localhost:44650
INFO     2013-05-25 19:11:53,633 dispatcher.py:98] Starting server "default" running at: http://192.168.0.1:8080
INFO     2013-05-25 19:11:53,634 admin_server.py:117] Starting admin server at: http://localhost:8000

请注意,它启动API服务器位于:http:// localhost:44650,即使内容是在http://192.168.0.1:8080提供的.这表示您只能在localhost上运行远程api吗?也许是出于安全考虑?

此外,当您现在尝试使用remote_api_shell.py时,您只能使用有效帐户登录(不允许虚假帐户),并且会立即出错并终止.

控制台错误以:

urllib2.HTTPError: HTTP Error 200: OK

和本地开发服务器输出:

INFO 2013-05-25 19:24:06,674 server.py:528] "GET /_ah/remote_api?rtok=90927106532 HTTP/1.1" 401 57

谁知道这里发生了什么?
是否无法访问除localhost之外的远程API?
如果您的内容是在特定IP上提供的,是否无法访问远程API(即使在localhost上)?

最佳答案 似乎api服务器没有设置主机的选项. dev_appserver.py提供了设置主机和放大器的选项.内容和管理服务器的端口,以及仅api服务器端口(api_port选项).例:

dev_appserver.py --host=192.168.5.92 
                 --admin_host 192.168.5.92 --admin_port 9000 
                 --api_port 7000 .

运行此报告:

 api_server.py:153] Starting API server at: http://localhost:7000

 dispatcher.py:164] Starting server "default" running at: http://192.168.5.92:8080

 admin_server.py:117] Starting admin server at: http://192.168.5.92:9000

查看GAE dev_appserver的来源,启动服务器的api_server方法的调用者是模块devappserver2.py,该行是:

apis = api_server.APIServer('localhost', options.api_port,
                             configuration.app_id)

您可以看到硬编码的主机名localhost.

如果你找不到好的解决方法,我会建议通过引入一个新选项和report issue with patch attached修补devappserver2.py?

点赞