$ _ POST是nginx的空($_POST is empty in nginx)

2019-10-19 13:10发布

我使用Python的urllib的发送POST请求到PHP程序:

phonehome_url = "example.com/phonehome.php"
urllib.urlopen(phonehome_url, site_info);

site_info是一个这样的数组: [{'name': 'Technische Universitaet Muenchen', 'url': 'http://www.tum.de', 'site_id': 11599, 'longitude': 11.5669, 'login_base': 'tumple', 'latitude': 48.1493}]

phonehome.php接收空$_POST 。 我的网络服务器是nginx的。 任何想法? 我已经尝试过修改的FastCGI-参数,可以不工作。


我试着在Apache同样的事情,没有这个问题。

Answer 1:

难道我得到它的权利,但通常请求类型是GET。 http://docs.python.org/2/library/urllib.html



文章来源: $_POST is empty in nginx