Amazon MWS GetMatchingProductForId API を使用しようとしていますが、複数の isbn の情報を取得しようとしています。フォーマットは IdList.Id.1=isbn[x] の形式である必要があります。ここで、isbn[x] は私の配列になります。それらを20のリストにリストできるようにする必要があります(つまり、 IdList.Id.1=, IdList.Id.2= ...IdList.Id.20= )。次のように implode($isbn) を使用できると思いました。
$count=0;
function ProductId_xml($searchTerm) {
$params = array(
'AWSAccessKeyId' => AWS_ACCESS_KEY_ID,
'Action' => "GetMatchingProductForId",
'SellerId' => MERCHANT_ID,
'SignatureMethod' => "HmacSHA256",
'SignatureVersion' => "2",
'Timestamp'=> gmdate("Y-m-d\TH:i:s.\\0\\0\\0\\Z", time()),
'Version'=> "2011-10-01",
'MarketplaceId' => MARKETPLACE_ID,
'IdType' => "ISBN",
);
$id=array(explode(',',$searchTerm));
foreach ($id as $newId)
{
$count .= $count +1;
$params += array('IdList.Id.'.$count => $newId);
} //end of foreach
// Sort the URL parameters
$url_parts = array();
foreach(array_keys($params) as $key)
$url_parts[] = $key . "=" . str_replace('%7E', '~', rawurlencode($params[$key]));
sort($url_parts);
// Construct the string to sign
$url_string = implode("&", $url_parts);
$string_to_sign = "GET\nmws.amazonservices.com\n/Products/2011-10-01\n" . $url_string;
// Sign the request
$signature = hash_hmac("sha256", $string_to_sign, AWS_SECRET_ACCESS_KEY, TRUE);
// Base64 encode the signature and make it URL safe
$signature = urlencode(base64_encode($signature));
$url = "https://mws.amazonservices.com/Products/2011-10-01" . '?' . $url_string . "&Signature=" . $signature;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$response = curl_exec($ch);
$parsed_xml = simplexml_load_string($response);
return ($parsed_xml);
}
}
?>
$searchterm は私の isbn 番号の配列ですが、それは isbn の文字列としてのみリストされています。一度に 1 つの isbn しか使用しない場合にこれが機能することはわかっていますが、プロセスを高速化するには、20 のバッチで実行する必要があります。ここからどこへ行けばいいのかわからない。どんな助けでも大歓迎です。編集: $params に 20 個の isbn のバッチが含まれるように関数を更新しましたが、追加した方法が正しいかどうかはわかりません。