single.php

Amazon Product Advertising API でバリエーション検索を使ってみる

Amazonのアフィリエイトで利用している[アソシエイトツールバー]で商品へのリンクを作成する画面で[画像]や[テキストと画像]が表示されなくなってしまう(予定)なので、自前でリンクを作成すべく、Amazon APIを勉強してます。今回は商品バリエーションを検索するGetVariationsを使ってみます。

アソシエイトツールバー

Amazonが提供している商品ページからアフィリエイト用のリンクを作成する[アソシエイトツールバー]があります。

このツールバーを利用すると、アフィリエイト情報を追加したテキストのURLや写真付きのリンクが自動的に作成してくれます。

しかし11月30日から[テキスト]リンクしか作成できなくなる予定です。

本当は11月10日から非表示になったのですが、各所から鬼電があったのか、その後に少し猶予期間が設けられました。

Amazonアソシエイツのホームページでも[お知らせ]に次のような記載があります。

【2023/11/14: (訂正) アソシエイト・ツールバーの画像リンク作成機能の提供終了について】 2023年11月10日をもって、アソシエイト・ツールバーの画像リンク作成機能の提供を終了する旨をお知らせしましたが、提供終了の日付を2023年11月30日に変更させていただきます。お客様に混乱を招いてしまいましたことをお詫びいたします。また、機能廃止によってご利用のお客様にご不便をおかけしますが、ご理解のほどよろしくお願いいたします。

Amazonアソシエイトのお知らせから

Amazon APIで自作してみる

アフィリエイト用のリンク生成をするサービスはありますが、他力本願だと結局「サービス終了」のリスクと付き合うことになるのは変わりません。

なので、Amazon PA APIでリンクの自作してみようと少し勉強してみました。

利用条件が厳しいAPI

Amazon Product Advartising APIは無料で利用ができますが、利用するための条件があります。

APIを利用するための条件や認証キーの取得に関しては、別記事をご覧ください。

バリエーション検索APIの利用

まずは、開発者ガイドのサンプルを変更してバリエーション検索するPHPを利用する手順です。

1. アフィリエイト用のアカウントでログインした状態で[ツール|Product Advertising API]メニューを選択します。

2. 表示された[Amazon Product Advertising API(商品情報API)]画面をスクロールして[参考資料]を探します。

2.[参考資料]内の[開発者ガイド]をクリックします。

3.[Welcome to Product Advertising API]画面の左側メニューで[Sending & Request]を探します。

4.[Sending & Request|Without SDK]メニューをクリックします

5. 切り替わった右側の画面で[PHP]までスクロールします。

6. 表示された2つのサンプルコードを、[searchItem.php]と[awsv4.php]として保存します。

[variations.php]
<?php

/**
 * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

$searchItemRequest = new SearchItemsRequest ();
$searchItemRequest->PartnerType = "Associates";
// Put your Partner tag (Store/Tracking id) in place of Partner tag
$searchItemRequest->PartnerTag = <PARTNER_TAG>;
$searchItemRequest->Keywords = "Harry";
$searchItemRequest->SearchIndex = "All";
$searchItemRequest->Resources = ["Images.Primary.Small","ItemInfo.Title","Offers.Listings.Price"];
$host = "webservices.amazon.com";
$path = "/paapi5/searchitems";
$payload = json_encode ($searchItemRequest);
//Put your Access Key in place of <ACCESS_KEY> and Secret Key in place of <SECRET_KEY> in double quotes
$awsv4 = new AwsV4 (<ACCESS_KEY>, <SECRET_KEY>);
$awsv4->setRegionName("us-east-1");
$awsv4->setServiceName("ProductAdvertisingAPI");
$awsv4->setPath ($path);
$awsv4->setPayload ($payload);
$awsv4->setRequestMethod ("POST");
$awsv4->addHeader ('content-encoding', 'amz-1.0');
$awsv4->addHeader ('content-type', 'application/json; charset=utf-8');
$awsv4->addHeader ('host', $host);
$awsv4->addHeader ('x-amz-target', 'com.amazon.paapi5.v1.ProductAdvertisingAPIv1.SearchItems');
$headers = $awsv4->getHeaders ();
$headerString = "";
foreach ( $headers as $key => $value ) {
    $headerString .= $key . ': ' . $value . "\r\n";
}
$params = array (
        'http' => array (
            'header' => $headerString,
            'method' => 'POST',
            'content' => $payload
        )
    );
$stream = stream_context_create ( $params );

$fp = @fopen ( 'https://'.$host.$path, 'rb', false, $stream );

if (! $fp) {
    throw new Exception ( "Exception Occured" );
}
$response = @stream_get_contents ( $fp );
if ($response === false) {
    throw new Exception ( "Exception Occured" );
}
echo $response;

class SearchItemsRequest {
    public $PartnerType;
    public $PartnerTag;
    public $Keywords;
    public $SearchIndex;
    public $Resources;
}
?>
[awsv4.php]
<?php

/**
 * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

class AwsV4 {

    private $accessKeyID = null;
    private $secretAccessKey = null;
    private $path = null;
    private $regionName = null;
    private $serviceName = null;
    private $httpMethodName = null;
    private $queryParametes = array ();
    private $awsHeaders = array ();
    private $payload = "";

    private $HMACAlgorithm = "AWS4-HMAC-SHA256";
    private $aws4Request = "aws4_request";
    private $strSignedHeader = null;
    private $xAmzDate = null;
    private $currentDate = null;

    public function __construct($accessKeyID, $secretAccessKey) {
        $this->accessKeyID = $accessKeyID;
        $this->secretAccessKey = $secretAccessKey;
        $this->xAmzDate = $this->getTimeStamp ();
        $this->currentDate = $this->getDate ();
    }

    function setPath($path) {
        $this->path = $path;
    }

    function setServiceName($serviceName) {
        $this->serviceName = $serviceName;
    }

    function setRegionName($regionName) {
        $this->regionName = $regionName;
    }

    function setPayload($payload) {
        $this->payload = $payload;
    }

    function setRequestMethod($method) {
        $this->httpMethodName = $method;
    }

    function addHeader($headerName, $headerValue) {
        $this->awsHeaders [$headerName] = $headerValue;
    }

    private function prepareCanonicalRequest() {
        $canonicalURL = "";
        $canonicalURL .= $this->httpMethodName . "\n";
        $canonicalURL .= $this->path . "\n" . "\n";
        $signedHeaders = '';
        foreach ( $this->awsHeaders as $key => $value ) {
            $signedHeaders .= $key . ";";
            $canonicalURL .= $key . ":" . $value . "\n";
        }
        $canonicalURL .= "\n";
        $this->strSignedHeader = substr ( $signedHeaders, 0, - 1 );
        $canonicalURL .= $this->strSignedHeader . "\n";
        $canonicalURL .= $this->generateHex ( $this->payload );
        return $canonicalURL;
    }

    private function prepareStringToSign($canonicalURL) {
        $stringToSign = '';
        $stringToSign .= $this->HMACAlgorithm . "\n";
        $stringToSign .= $this->xAmzDate . "\n";
        $stringToSign .= $this->currentDate . "/" . $this->regionName . "/" . $this->serviceName . "/" . $this->aws4Request . "\n";
        $stringToSign .= $this->generateHex ( $canonicalURL );
        return $stringToSign;
    }

    private function calculateSignature($stringToSign) {
        $signatureKey = $this->getSignatureKey ( $this->secretAccessKey, $this->currentDate, $this->regionName, $this->serviceName );
        $signature = hash_hmac ( "sha256", $stringToSign, $signatureKey, true );
        $strHexSignature = strtolower ( bin2hex ( $signature ) );
        return $strHexSignature;
    }

    public function getHeaders() {
        $this->awsHeaders ['x-amz-date'] = $this->xAmzDate;
        ksort ( $this->awsHeaders );
        $canonicalURL = $this->prepareCanonicalRequest ();
        $stringToSign = $this->prepareStringToSign ( $canonicalURL );
        $signature = $this->calculateSignature ( $stringToSign );
        if ($signature) {
            $this->awsHeaders ['Authorization'] = $this->buildAuthorizationString ( $signature );
            return $this->awsHeaders;
        }
    }

    private function buildAuthorizationString($strSignature) {
        return $this->HMACAlgorithm . " " . "Credential=" . $this->accessKeyID . "/" . $this->getDate () . "/" . $this->regionName . "/" . $this->serviceName . "/" . $this->aws4Request . "," . "SignedHeaders=" . $this->strSignedHeader . "," . "Signature=" . $strSignature;
    }

    private function generateHex($data) {
        return strtolower ( bin2hex ( hash ( "sha256", $data, true ) ) );
    }

    private function getSignatureKey($key, $date, $regionName, $serviceName) {
        $kSecret = "AWS4" . $key;
        $kDate = hash_hmac ( "sha256", $date, $kSecret, true );
        $kRegion = hash_hmac ( "sha256", $regionName, $kDate, true );
        $kService = hash_hmac ( "sha256", $serviceName, $kRegion, true );
        $kSigning = hash_hmac ( "sha256", $this->aws4Request, $kService, true );

        return $kSigning;
    }

    private function getTimeStamp() {
        return gmdate ( "Ymd\THis\Z" );
    }

    private function getDate() {
        return gmdate ( "Ymd" );
    }
}
?>

7.[variations.php]の先頭部分を次の様に編集します。

<?php
  require 'awsv4.php';
/**
 * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *

8.[variations.php]の中段部分を次の様に編集します。

$getVariationsRequest = new GetVariationsRequest ();
$getVariationsRequest->PartnerType = "Associates";
// Put your Partner tag (Store/Tracking id) in place of Partner tag
$getVariationsRequest->PartnerTag = <PARTNER_TAG>; //[Amazonアソシエイトで利用しているID(assosicate-22など)]
$getVariationsRequest->ASIN = ["<ASIN>"];
 //検索する商品のASINコード
$getVariationsRequest->VariationPage = 1;
$getVariationsRequest->Resources = ["ItemInfo.Title","VariationSummary.Price.HighestPrice","VariationSummary.Price.LowestPrice","VariationSummary.VariationDimension"];
$host = "webservices.amazon.com";
$path = "/paapi5/getvariations";
$payload = json_encode ($getVariationsRequest);
//Put your Access Key in place of <ACCESS_KEY> and Secret Key in place of <SECRET_KEY> in double quotes
$awsv4 = new AwsV4 (<ACCESS_KEY>, <SECRET_KEY>); 先に取得した[アクセスキー]と[シークレットキー]
$awsv4->setRegionName("us-west-2"); //日本は us-west-2 
$awsv4->setServiceName("ProductAdvertisingAPI");
$awsv4->setPath ($path);
$awsv4->setPayload ($payload);
$awsv4->setRequestMethod ("POST");
$awsv4->addHeader ('content-encoding', 'amz-1.0');
$awsv4->addHeader ('content-type', 'application/json; charset=utf-8');
$awsv4->addHeader ('host', $host);
$awsv4->addHeader ('x-amz-target', 'com.amazon.paapi5.v1.ProductAdvertisingAPIv1.GetVeriations');
$headers = $awsv4->getHeaders ();

9.[variations.php]の最後に次のコードを追加します。

class GetVariationsRequest {
    public $ASIN;
    public $PartnerType;
    public $PartnerTag;
    public $VariationCount;
    public $VariationPage;
    public $Resources;
}

?>

10. PHPが動作する環境に、2つのファイルを保存してブラウザーで[variations.php]を表示します。

11. 画面に検索された結果が表示されます。

とりあえず、公式ページのサンプルを少し編集することでAPIの利用ができました。

バリエーション検索は、Amazonの商品でカラーや機能などで他のバリエーションがある場合に利用が可能です。

まとめ

今回は、Amazon アソシエイトプログラムの[Amazon Product Advertising API]で商品のバリエーション情報を利用するためのGetVariations メソッドについて書きました。

Amazonの商品紹介ページで色やデザイン、機能などバリエーションが存在する場合に検索結果を取得することが可能でした。

ツールバーでの生成が終了するまでに、少し猶予期間ができたのでAPIを使ってリンクを作成する方法を探していきます。

[Amazon Product Advertising API]を使いたい人の参考になれば幸いです。

スポンサーリンク

最後までご覧いただき、ありがとうございます。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です