我正在使用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-params,不起作用。
我在没有这个问题的情况下在Apache上做了同样的事情。