Passando $ _POST valores com cURL

94

Como você passa $_POSTvalores para uma página usando cURL?

Scott Gottreu
fonte

Respostas:

167

Deve funcionar bem.

$data = array('name' => 'Ross', 'php_master' => true);

// You can POST a file by prefixing with an @ (for <input type="file"> fields)
$data['file'] = '@/home/user/world.jpg';

$handle = curl_init($url);
curl_setopt($handle, CURLOPT_POST, true);
curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
curl_exec($handle);
curl_close($handle)

Temos duas opções aqui, CURLOPT_POSTque ativa o HTTP POST e CURLOPT_POSTFIELDSque contém uma matriz de nossos dados de postagem para enviar. Isso pode ser usado para enviar dados para POST <form>s.


É importante notar que curl_setopt($handle, CURLOPT_POSTFIELDS, $data);leva os dados $ em dois formatos e que isso determina como os dados de postagem serão codificados.

  1. $datacomo array(): Os dados serão enviados como multipart/form-datanem sempre aceitos pelo servidor.

    $data = array('name' => 'Ross', 'php_master' => true);
    curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
  2. $datacomo string codificada por url: Os dados serão enviados como application/x-www-form-urlencoded, que é a codificação padrão para os dados de formulário html enviados.

    $data = array('name' => 'Ross', 'php_master' => true);
    curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($data));

Espero que isso ajude outras pessoas a economizar tempo.

Vejo:

Ross
fonte
Sua nota me salvou pelo menos uma hora de depuração. Obrigado.
Vivek Kumar
30

Ross tem a ideia certa para POSTAR o formato usual de parâmetro / valor em uma url.

Recentemente, encontrei uma situação em que precisei POSTAR algum XML como Content-Type "text / xml" sem nenhum par de parâmetros, então veja como fazer isso:

$xml = '<?xml version="1.0"?><stuff><child>foo</child><child>bar</child></stuff>';
$httpRequest = curl_init();

curl_setopt($httpRequest, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($httpRequest, CURLOPT_HTTPHEADER, array("Content-Type:  text/xml"));
curl_setopt($httpRequest, CURLOPT_POST, 1);
curl_setopt($httpRequest, CURLOPT_HEADER, 1);

curl_setopt($httpRequest, CURLOPT_URL, $url);
curl_setopt($httpRequest, CURLOPT_POSTFIELDS, $xml);

$returnHeader = curl_exec($httpRequest);
curl_close($httpRequest);

No meu caso, precisei analisar alguns valores do cabeçalho de resposta HTTP, portanto, pode não ser necessário definir CURLOPT_RETURNTRANSFERou CURLOPT_HEADER.

Mark Biek
fonte
1
Não é isso que o cartaz está pedindo, mas é exatamente o que eu estava procurando, obrigado!
dia
Estou feliz que outra pessoa achou isso útil.
Mark Biek
1
seu "curl_setopt ($ httpRequest, CURLOPT_HTTPHEADER, array (" Content-Type: text / xml "));" resolvi algo que já me levou algumas horas! muito obrigado :)
Alexei Tenitski
Oi Mark, se você tiver tempo, poderia me ajudar? .. Por favor. clique aqui
JayAnn
Gastamos o nosso tentando descobrir por que meus dados xml não foram aceitos quando enviados como urlencoded. O Content-Type e nenhum urlencode me salvou. Obrigado.
Samuel
3
$query_string = "";

if ($_POST) {
    $kv = array();
    foreach ($_POST as $key => $value) {
        $kv[] = stripslashes($key) . "=" . stripslashes($value);
    }
    $query_string = join("&", $kv);
}

if (!function_exists('curl_init')){
    die('Sorry cURL is not installed!');
}

$url = 'https://www.abcd.com/servlet/';

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, count($kv));
curl_setopt($ch, CURLOPT_POSTFIELDS, $query_string);

curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, FALSE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);

$result = curl_exec($ch);

curl_close($ch);
Sapnandu
fonte
3

Outro exemplo simples de PHP de uso de cURL:

<?php
    $ch = curl_init();                    // Initiate cURL
    $url = "http://www.somesite.com/curl_example.php"; // Where you want to post data
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_POST, true);  // Tell cURL you want to post something
    curl_setopt($ch, CURLOPT_POSTFIELDS, "var1=value1&var2=value2&var_n=value_n"); // Define what you want to post
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Return the output in string format
    $output = curl_exec ($ch); // Execute

    curl_close ($ch); // Close cURL handle

    var_dump($output); // Show output
?>

Exemplo encontrado aqui: http://devzone.co.in/post-data-using-curl-in-php-a-simple-example/

Em vez de usar, curl_setoptvocê pode usar curl_setopt_array.

http://php.net/manual/en/function.curl-setopt-array.php

Julian
fonte
Obrigado!! - Seu código curl_setopt($ch, CURLOPT_POSTFIELDS, "var1=value1&var2=value2&var_n=value_n"); // Define what you want to postme forneceu o que eu procurava :)
asugrue15
2

Confira esta página que tem um exemplo de como fazer.

Andy Griffin
fonte
2
Embora isso possa teoricamente responder à pergunta, seria preferível incluir as partes essenciais da resposta aqui e fornecer o link para referência.
Nanne
1
$url='Your url'; // Specify your url
$data= array('parameterkey1'=>value,'parameterkey2'=>value); // Add parameters in key value
$ch = curl_init(); // Initialize cURL
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
curl_close($ch);
Aniket B
fonte
1
Você poderia expandir esta resposta? Algumas linhas de código não constituem uma resposta.
Rich Benner
1) Especifique seu url 2) Crie uma matriz de parâmetros 3) Inicialize o curl 4) defina as opções necessárias do curl 5) Execute o Curl 6) Feche o Curl
Aniket B
0
<?php
    function executeCurl($arrOptions) {

        $mixCH = curl_init();

        foreach ($arrOptions as $strCurlOpt => $mixCurlOptValue) {
            curl_setopt($mixCH, $strCurlOpt, $mixCurlOptValue);
        }

        $mixResponse = curl_exec($mixCH);
        curl_close($mixCH);
        return $mixResponse;
    }

    // If any HTTP authentication is needed.
    $username = 'http-auth-username';
    $password = 'http-auth-password';

    $requestType = 'POST'; // This can be PUT or POST

    // This is a sample array. You can use $arrPostData = $_POST
    $arrPostData = array(
        'key1'  => 'value-1-for-k1y-1',
        'key2'  => 'value-2-for-key-2',
        'key3'  => array(
                'key31'   => 'value-for-key-3-1',
                'key32'   => array(
                    'key321' => 'value-for-key321'
                )
        ),
        'key4'  => array(
            'key'   => 'value'
        )
    );

    // You can set your post data
    $postData = http_build_query($arrPostData); // Raw PHP array

    $postData = json_encode($arrPostData); // Only USE this when request JSON data.

    $mixResponse = executeCurl(array(
        CURLOPT_URL => 'http://whatever-your-request-url.com/xyz/yii',
        CURLOPT_RETURNTRANSFER => true,
        CURLOPT_HTTPGET => true,
        CURLOPT_VERBOSE => true,
        CURLOPT_AUTOREFERER => true,
        CURLOPT_CUSTOMREQUEST => $requestType,
        CURLOPT_POSTFIELDS  => $postData,
        CURLOPT_HTTPHEADER  => array(
            "X-HTTP-Method-Override: " . $requestType,
            'Content-Type: application/json', // Only USE this when requesting JSON data
        ),

        // If HTTP authentication is required, use the below lines.
        CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
        CURLOPT_USERPWD  => $username. ':' . $password
    ));

    // $mixResponse contains your server response.
Mohammad Faisal Islam
fonte