在PHP中使用cURL进行RAW POST


126

如何使用cURL在PHP中进行RAW POST?

未经处理的原始帖子没有任何编码,我的数据存储在字符串中。数据应采用以下格式:

... usual HTTP header ...
Content-Length: 1039
Content-Type: text/plain

89c5fdataasdhf kajshfd akjshfksa hfdkjsa falkjshfsa
ajshd fkjsahfd lkjsahflksahfdlkashfhsadkjfsalhfd
ajshdfhsafiahfiuwhflsf this is just data from a string
more data kjahfdhsakjfhsalkjfdhalksfd

一种选择是手动编写要发送的整个HTTP标头,但这似乎不太理想。

无论如何,我是否可以仅将选项传递给curl_setopt(),这些选项说使用POST,使用文本/纯文本以及从中发送原始数据$variable

Answers:


229

我刚刚找到了解决方案,可以回答我自己的问题,以防其他人偶然发现它。

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,            "http://url/url/url" );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_POST,           1 );
curl_setopt($ch, CURLOPT_POSTFIELDS,     "body goes here" ); 
curl_setopt($ch, CURLOPT_HTTPHEADER,     array('Content-Type: text/plain')); 

$result=curl_exec ($ch);

4
php将为您设置content-length标头还是您也应该设置它?
Eric Bloch

3
我根本无法使它正常工作。我有一个页面试图将原始数据发布到该页面。该页面将接收到的所有原始数据记录到数据库表中。根本没有新行。您知道自09年以来这里是否发生了变化?
詹姆斯

1
这对我有用,而无需指定任何HTTP标头。
xryl669 2014年

12
我才意识到 正文可以包含任何有效的json字符串。
shasi kanth,2015年

1
此原始帖子的上限为2G。如果您尝试发送大于2G的文件,它们将被截断为2G。它是要加载的字符串类型的限制。
Kaden Yealy

5

用Guzzle库实现:

use GuzzleHttp\Client;
use GuzzleHttp\RequestOptions;

$httpClient = new Client();

$response = $httpClient->post(
    'https://postman-echo.com/post',
    [
        RequestOptions::BODY => 'POST raw request content',
        RequestOptions::HEADERS => [
            'Content-Type' => 'application/x-www-form-urlencoded',
        ],
    ]
);

echo(
    $response->getBody()->getContents()
);

PHP CURL扩展名:

$curlHandler = curl_init();

curl_setopt_array($curlHandler, [
    CURLOPT_URL => 'https://postman-echo.com/post',
    CURLOPT_RETURNTRANSFER => true,

    /**
     * Specify POST method
     */
    CURLOPT_POST => true,

    /**
     * Specify request content
     */
    CURLOPT_POSTFIELDS => 'POST raw request content',
]);

$response = curl_exec($curlHandler);

curl_close($curlHandler);

echo($response);

源代码

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.