1

ご覧のとおり、culrを使用している他のWebサービスを投稿するphpスクリプトを作成しようとしています。問題は、API Webサーバードキュメントにあり、文字通り「http呼び出しごとに追加する必要があるため、いくつかのヘッダーパラメーターを送信するように求められます。次のヘッダー パラメータ: APIuserID、APIpassword、および ResponseType"

私の質問は、ヘッダーリクエストにカスタムパラメーターを追加するにはどうすればよいですか?. ありがとう

<?php 
function curl_post($url, array $post = NULL, array $options = array()) 
{ 
$defaults = array( 
    CURLOPT_POST => 1, 
    CURLOPT_HEADER => 0, 
    CURLOPT_URL => $url, 
    CURLOPT_FRESH_CONNECT => 1, 
    CURLOPT_RETURNTRANSFER => 1, 
    CURLOPT_FORBID_REUSE => 1, 
    CURLOPT_TIMEOUT => 4, 
    CURLOPT_SSL_VERIFYHOST=>0,
    CURLOPT_POSTFIELDS => http_build_query($post) 
); 

$ch = curl_init(); 
curl_setopt_array($ch, ($options + $defaults)); 
if( ! $result = curl_exec($ch)) 
{ 
    trigger_error(curl_error($ch)); 
} 
curl_close($ch); 
return $result; 
} 

$result=curl_post('https://www.serverPath/serverAPI',array('a'=>'a','b'=>'b'));

echo $result;

?>

4

1 に答える 1

7

これらのパラメーターを httpheader に追加するだけで試しましたか?

curl_setopt($tuCurl, CURLOPT_HTTPHEADER, array(
    "Content-Type: text/xml",
    "APIuserID: $id", 
    "APIpassword: $password", 
    "Content-length: ".strlen($data)
)); 

さらに、次を使用できます: http://php.net/manual/en/soapheader.soapheader.php

于 2012-08-09T12:30:21.427 に答える