我应该对POST数据进行URL编码吗?

时间:2011-07-06 22:43:35

标签: http post http-post urlencode url-encoding

我正在将数据发布到外部API(使用PHP,如果它是相关的)。

我应该对我传递的POST变量进行URL编码吗?

或者我只需要对GET数据进行URL编码吗?

谢谢!

更新:这是我的PHP,如果它是相关的:

$fields = array(
    'mediaupload'=>$file_field,
    'username'=>urlencode($_POST["username"]),
    'password'=>urlencode($_POST["password"]),
    'latitude'=>urlencode($_POST["latitude"]),
    'longitude'=>urlencode($_POST["longitude"]),
    'datetime'=>urlencode($_POST["datetime"]),
    'category'=>urlencode($_POST["category"]),
    'metacategory'=>urlencode($_POST["metacategory"]),
    'caption'=>($_POST["description"])
);
$fields_string = http_build_query($fields);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);

4 个答案:

答案 0 :(得分:126)

一般答案

你的问题的一般答案是它取决于。您可以通过指定HTTP标头中的“Content-Type”来决定。

“application / x-www-form-urlencoded”的值意味着您的POST正文需要像GET参数字符串一样进行URL编码。 “multipart / form-data”的值意味着您将使用内容分隔符而不是url对内容进行编码。

This answer has a much more thorough explanation如果您想了解更多信息。


具体答案

对于您正在使用的PHP库(CURL)的特定答案,您应该read the documentation here

以下是相关信息:

  

<强> CURLOPT_POST

     

为常规HTTP POST是正确的。   此POST是普通的application / x-www-form-urlencoded类型,最常用于HTML表单。

     

<强> CURLOPT_POSTFIELDS

     

要在HTTP“POST”操作中发布的完整数据。要发布文件,请在文件前加上@并使用完整路径。可以通过使用格式为'; type = mimetype'的类型的文件名来明确指定文件类型。此参数可以作为urlencoded字符串传递,如'para1 = val1&amp; para2 = val2&amp; ...',或者作为一个数组,字段名称为键,字段数据为值。如果value是数组,则Content-Type标头将设置为multipart / form-data。从PHP 5.2.0开始,如果使用@前缀将文件传递给此选项,则value必须是数组。

答案 1 :(得分:9)

@DougW清楚地回答了这个问题,但我仍然想在这里添加一些代码来解释道格的观点。 (并纠正上面代码中的错误)

解决方案1:使用内容类型标题对POST数据进行URL编码:application / x-www-form-urlencoded。

注意:你不需要逐个urlencode $ _POST []字段,http_build_query()函数可以很好地完成urlencoding工作。

$fields = array(
    'mediaupload'=>$file_field,
    'username'=>$_POST["username"],
    'password'=>$_POST["password"],
    'latitude'=>$_POST["latitude"],
    'longitude'=>$_POST["longitude"],
    'datetime'=>$_POST["datetime"],
    'category'=>$_POST["category"],
    'metacategory'=>$_POST["metacategory"],
    'caption'=>$_POST["description"]
);

$fields_string = http_build_query($fields);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$fields_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);

解决方案2:直接将数组作为发布数据传递而不进行URL编码,而Content-Type标题将设置为multipart / form-data。

$fields = array(
        'mediaupload'=>$file_field,
        'username'=>$_POST["username"],
        'password'=>$_POST["password"],
        'latitude'=>$_POST["latitude"],
        'longitude'=>$_POST["longitude"],
        'datetime'=>$_POST["datetime"],
        'category'=>$_POST["category"],
        'metacategory'=>$_POST["metacategory"],
        'caption'=>$_POST["description"]
    );

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_POST,1);
    curl_setopt($ch, CURLOPT_POSTFIELDS,$fields);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $response = curl_exec($ch);

两个代码段都有效,但使用不同的HTTP标头和正文。

答案 2 :(得分:2)

curl将为您编码数据,只需将原始字段数据放入字段数组并告诉它“去”。

答案 3 :(得分:2)

以上帖子回答了与URL编码及其工作方式有关的问题,但最初的问题是“我应该对POST数据进行URL编码吗?”。没有答案。

根据我最近在URL编码方面的经验,我想进一步扩展这个问题。 “我应该对POST数据进行URL编码,与GET HTTP方法相同。通常,如果浏览器上的HTML表单被填充,提交和/或获取某些信息,浏览器将进行URL编码,但是如果应用程序公开了Web服务并期望消费者对数据进行URL编码,在结构上和技术上使用POST HTTP方法进行URL编码是否正确?”