我正在尝试使用我的python脚本获得的结果填充数据库。我在POST请求中发送gzip压缩数据。
PHP脚本在中间作为Web服务运行,需要提取gzip数据并获取“sql-query”并执行进一步的处理。
这就是我想在Python方面做的事情:
Sending a POST request using urllib:
# Data to be sent in POST request, it can be a SQL UPDATE/INSERT or SELECT
dictheaders = {'sql': "UPDATE 'logs' SET 'some_value' = Failed"}
# Encode the data
data = urllib.urlencode(dictheaders)
# Gzip compress the encoded data
IO = StringIO.StringIO()
gzip_data = gzip.GzipFile(fileobj=IO, mode='w')
gzip_data.write(data)
gzip_data.close()
gzip_data = IO.getvalue()
# This is the POST request being sent to a PHP web services file which
# needs to extract the gzipped query and then execute the query on SQL
f = urllib2.urlopen('http://x.x.x.x/example.php', gzip_data)
以下是我在PHP方面尝试的更改:
$postdata = file_get_contents("php://input");
$a = gzinflate(substr(substr($postdata, 10), 0, -8));
$sql = $a['sql'];
上面的代码似乎与我的Python代码不兼容。这是在PHP中提取gzip POST请求的正确方法吗?
答案 0 :(得分:2)
您使用了gzip.GzipFile
,它会写入一个gzip文件头,您需要在将数据传递到gzinflate
之前将其删除;然后,通过代码的外观,您可能希望在其上执行parse_str之类的操作:
$str = gzinflate(substr($postdata, 10, -8));
parse_str($str, $a);
echo $a['sql'];
此外,在您的python代码中,此行上有拼写错误或基本错误:
dictheaders = {'sql', 'SELECT * FROM employees'}
请改为尝试:
dictheaders = {'sql': 'SELECT * FROM employees'}
答案 1 :(得分:1)
尝试替换它:
# Gzip compress the encoded data
IO = StringIO.StringIO()
gzip_data = gzip.GzipFile(fileobj=IO, mode='w')
gzip_data.write(data)
gzip_data.close()
gzip_data = IO.getvalue()
用这个:
gzip_data = zlib.compress(data)
当您真正想要的是compress数据时,无需制作gzip文件。
PHP方面很好,只需删除substr
,因为不再需要它们。但是 - 您将未压缩的字符串视为数组,这将无法正常工作。您需要在PHP端解码查询字符串。我个人只是使用JSON来做这件事。