drupal_http_requestにXMLデータを投稿する方法は?カールコードがあります

drupal.stackexchange https://drupal.stackexchange.com/questions/8441

  •  16-10-2019
  •  | 
  •  

質問

これはCurlコードに従います

    $ch = curl_init(); //initiate the curl session
    curl_setopt($ch, CURLOPT_URL, $url); //set to url to post to
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // tell curl to return data in a variable
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlrequest); // post the xml
    curl_setopt($ch, CURLOPT_TIMEOUT, 10); // set timeout in seconds
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    $result['xml'] = curl_exec($ch);

使用する次のコードを変更するにはどうすればよいですか drupal_http_request()?

役に立ちましたか?

解決

方法を見る drupal_http_request() で使用されます _xmlrpc(), 、このようなことはそれをするべきです。

// The path to send the request
$url = "http://example.com/API_PATH_HERE";
// Example of valid xml code;
$xmlrequest = "<showId>0</showId><tag>123</tag>";

$response = drupal_http_request($url, array(
  'headers' => array('Content-Type' => 'text/xml'),
  'data' => $xmlrequest,
  'method' => 'POST',
  'timeout' => 10
));
// If there is no error return data
if (empty($response->error)) {
  $result['xml'] = $response->data;
}
ライセンス: CC-BY-SA帰属
所属していません drupal.stackexchange
scroll top