shevabam/amazon-product-info

从亚马逊API获取简单产品信息

2.0.0 2024-02-13 18:49 UTC

This package is auto-updated.

Last update: 2024-09-13 20:06:57 UTC


README

Amazon Product Information 是一个PHP库,用于从亚马逊API获取简单产品信息。

提供有关产品及其ASIN编号的简单信息。

返回的信息包括

  • 产品名称
  • 访问URL
  • 主图像(不同尺寸)
  • 价格

需求

您必须设置一个经过审查并获得最终批准的亚马逊联盟账户。

您需要访问密钥秘密密钥合作伙伴标签 (工具 > 产品广告API)

更多信息请点击这里

Amazon Product Information 需要 PHP 8.0+。

安装

使用Composer,运行以下命令

composer require shevabam/amazon-product-info

它将下载由亚马逊提供的Product Advertising API PHP SDK

使用方法

首先,使用Composer自动加载器将库包含到您的代码中,然后使用您的亚马逊联盟凭据创建一个AmazonProductInfo对象。

require 'vendor/autoload.php';

$Amz = new \AmazonProductInfo\AmazonProductInfo([
    'access_key'  => '',
    'secret_key'  => '',
    'partner_tag' => '',
    'lang'        => 'fr'
]);

区域设置

此库支持所有产品广告API区域设置

默认:us。

通过ASIN搜索项目

您可以使用ASIN编号搜索项目(必须是数组)

$getResults = $Amz->searchByAsin(["B084J4MZK6", "B07ZZVWB4L"]);

完整示例

require 'vendor/autoload.php';

$Amz = new \AmazonProductInfo\AmazonProductInfo([
    'access_key'  => '',
    'secret_key'  => '',
    'partner_tag' => '',
    'lang'        => 'fr'
]);

$getResults = $Amz->searchByAsin(["B084J4MZK6", "B07ZZVWB4L"]);

结果

Array
(
    [error] => 
    [datas] => Array
    (
        [B084J4MZK6] => Array
        (
            [title] => Nouvel Echo Dot (4e génération), Enceinte connectée avec Alexa, Blanc
            [url] => https://www.amazon.fr/dp/B084J4MZK6?tag=¤¤&linkCode=ogi&th=1&psc=1
            [images] => Array
            (
                [primary] => Array
                (
                    [small] => Array
                    (
                        [url] => https://m.media-amazon.com/images/I/51Jb6AQdGcL._SL75_.jpg
                        [width] => 75
                        [height] => 75
                    )
                    [medium] => Array
                    (
                        [url] => https://m.media-amazon.com/images/I/51Jb6AQdGcL._SL160_.jpg
                        [width] => 160
                        [height] => 160
                    )
                    [large] => Array
                    (
                        [url] => https://m.media-amazon.com/images/I/51Jb6AQdGcL.jpg
                        [width] => 500
                        [height] => 500
                    )
                )
            )
            [price] => 29,99 €
        )
        [B07ZZVWB4L] => Array
        (
            [title] => Découvrez Fire TV Stick Lite avec télécommande vocale Alexa | Lite (sans boutons de contrôle de la TV), Streaming HD, Modèle 2020
            [url] => https://www.amazon.fr/dp/B07ZZVWB4L?tag=¤¤&linkCode=ogi&th=1&psc=1
            [images] => Array
            (
                [primary] => Array
                (
                    [small] => Array
                    (
                        [url] => https://m.media-amazon.com/images/I/318TG3aNKpL._SL75_.jpg
                        [width] => 75
                        [height] => 75
                    )
                    [medium] => Array
                    (
                        [url] => https://m.media-amazon.com/images/I/318TG3aNKpL._SL160_.jpg
                        [width] => 160
                        [height] => 160
                    )
                    [large] => Array
                    (
                        [url] => https://m.media-amazon.com/images/I/318TG3aNKpL.jpg
                        [width] => 500
                        [height] => 500
                    )
                )
            )
            [price] => 29,99 €
        )
    )
)