Amazon「Product Advertising API」を使い書籍検索をして結果を表示するプログラム例

APIプログラム

AmazonのWebAPI(Product Advertising API)を利用して書籍を検索して結果を表示するだけの単純なプログラムをPHPとjQueryで作成したときのメモです。

Amazon Product Advertising APIのサンプルコード

AmazonのWebAPI(Product Advertising API)を利用する場合、アクセスするためにいくつか方法があるようですが、下のリンク先のサイトにあるPHPコードを利用するとAPIにアクセスできて利用できます。

Sign Amazon Product Advertising API REST Requests with PHP and Python

上記リンク先にあるPHPプログラムをそのまま利用しても動きますが、リクエスト先のURL(コメント”//some paramters”のところ)を入れる変数$hostに入れるURLを変更しているのでコードを掲載しておきます。

<?php

function aws_signed_request($region, $params, $public_key, $private_key, $associate_tag=NULL, $version='2011-08-01')
{
    /*
    Copyright (c) 2009-2012 Ulrich Mierendorff

    Permission is hereby granted, free of charge, to any person obtaining a
    copy of this software and associated documentation files (the "Software"),
    to deal in the Software without restriction, including without limitation
    the rights to use, copy, modify, merge, publish, distribute, sublicense,
    and/or sell copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
    DEALINGS IN THE SOFTWARE.
    */
    
    /*
    Parameters:
        $region - the Amazon(r) region (ca,com,co.uk,de,fr,co.jp)
        $params - an array of parameters, eg. array("Operation"=>"ItemLookup",
                        "ItemId"=>"B000X9FLKM", "ResponseGroup"=>"Small")
        $public_key - your "Access Key ID"
        $private_key - your "Secret Access Key"
        $version (optional)
    */
    
    // some paramters
    $method = 'GET';
    $host = 'ecs.amazonaws.'.$region; // 変更 webservices.amazon.
    $uri = '/onca/xml';
    
    // additional parameters
    $params['Service'] = 'AWSECommerceService';
    $params['AWSAccessKeyId'] = $public_key;
    // GMT timestamp
    $params['Timestamp'] = gmdate('Y-m-d\TH:i:s\Z');
    // API version
    $params['Version'] = $version;
    if ($associate_tag !== NULL) {
        $params['AssociateTag'] = $associate_tag;
    }
    
    // sort the parameters
    ksort($params);
    
    // create the canonicalized query
    $canonicalized_query = array();
    foreach ($params as $param=>$value)
    {
        $param = str_replace('%7E', '~', rawurlencode($param));
        $value = str_replace('%7E', '~', rawurlencode($value));
        $canonicalized_query[] = $param.'='.$value;
    }
    $canonicalized_query = implode('&', $canonicalized_query);
    
    // create the string to sign
    $string_to_sign = $method."\n".$host."\n".$uri."\n".$canonicalized_query;
    
    // calculate HMAC with SHA256 and base64-encoding
    $signature = base64_encode(hash_hmac('sha256', $string_to_sign, $private_key, TRUE));
    
    // encode the signature for the request
    $signature = str_replace('%7E', '~', rawurlencode($signature));
    
    // create request
    $request = 'http://'.$host.$uri.'?'.$canonicalized_query.'&Signature='.$signature;
    
    return $request;
}
?>

次に上記コードを利用した場合のサンプルコードも同じように掲載されているのを少し変更して、日本のドメイン用に$request変数をjpにして、またjQueryでデータを扱いやすいようにJSONデータで返すように変更したサンプルコードが下のコードです。

aws_signed_request(‘第1引数’,・・・)に第1引数を’com’から’jp’に変更(aws_signed_request.phpの$hostの変数を変更した場合ここも変更が必要)

出力をjson形式にするためにjson_encode関数を使用するように変更しています。
ResponseGroup参考ページ:Product Advertising API

include('aws_signed_request.php');

$public_key = 'アクセスキー';
$private_key = '秘密キー';
$associate_tag = '********';

$keyword = $_POST['query'];

// generate signed URL
$request = aws_signed_request('jp', array(
        'Operation' => 'ItemSearch',
        'SearchIndex' => 'Books',
        'Keywords' => $keyword,
        'ResponseGroup' => 'Images,ItemAttributes'), 
        $public_key, $private_key, $associate_tag);

// do request (you could also use curl etc.)
$response = @file_get_contents($request);
if ($response === FALSE) {
    echo "Request failed.\n";
} else {
    // parse XML
    $pxml = simplexml_load_string($response);
    if ($pxml === FALSE) {
        echo "Response could not be parsed.\n";
    } else {
        if (isset($pxml)) {
          // jsonで出力
          $pjson = json_encode($pxml);  
          print $pjson;
        }
    }
}

jQueryの$.ajaxを使い非同期通信で書籍を検索して結果を表示するプログラムが下のコードです。(検索結果に何もないときはエラー処理になりますが、特に何もしていません。)

<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
$(function() {
  $('#button').on('click', function(e) {
    e.preventDefault();
    $.ajax({
      url:'aws_request.php',
      type: 'post',
      dataType: 'json',
      async: 'true',
      data: {
        query: $('#word').val()
      }
    })
    .done(function(data) {
      goods = data.Items.Item;
      $('#content').empty();
      for(var i = 0; i < 5; i++) {
        var img_goods = $('<img>').attr('src', goods[i].SmallImage.URL);
        $('#content').append('<p>' + goods[i].ItemAttributes.Title).append(img_goods)
      }
    })
    .fail(function(data) {
       console.dir(data);
    });
  });
});

下のHTMLは、検索キーワードを入力するテキストフォームと結果を表示するタグになります。

<input type="text" id="word" value="" />
<input type="button" id="button" value="送信" />
<div id="content"></div>
スポンサーリンク

コメント

タイトルとURLをコピーしました