bricre/amazon-selling-partner-sdk-product-pricing

由亚马逊销售合作伙伴API定价的OpenAPI定义生成的API客户端

v0 2021-09-23 22:35 UTC

This package is auto-updated.

Last update: 2024-09-24 05:05:45 UTC


README

使用allansun/openapi-code-generator从亚马逊的Swagger文件生成的代码。

生成的代码具有完善的PHPDoc注释,自我文档化良好。

请参考亚马逊的文档以了解API行为的详细说明。

安装

composer require bricre/amazon-selling-partner-sdk-product-pricing

您还需要一个基于PSR-7的客户端或基于Symfony HTTP Foundation的客户端

因此,您可以使用Guzzle(或其他PSR-7兼容的客户端)

composer require guzzlehttp/guzzle

Symfony HTTP客户端

composer require symfony/http-client

版本控制

此项目符合亚马逊的API版本控制。

由于Composer的限制,版本号如'2021-01-01'将更改为'2021.01.01'。

如果您发现没有可用的匹配版本,请联系作者以生成针对正确版本的代码。

用法

首先,您需要使用所需的凭据和预定义的响应类型配置OpenAPI\RunTime\Client。您只需要做一次(或在您的依赖注入中创建一个服务)。

您还可以查看亚马逊关于如何授权您的请求的文档。

<?php
use Amz\ProductPricing\ResponseTypes;
use OpenAPI\Runtime\Client;
use OpenAPI\Runtime\SimplePsrResponseHandlerStack;

Client::configure(
    new \GuzzleHttp\Client([
        'base_uri' => 'https://sellingpartnerapi-na.amazon.com/',
        'headers'=>[
            'Authorization'=> 'Bearer <accessToken>'
        ]
    ]),
    new SimplePsrResponseHandlerStack(new ResponseTypes())
);

然后在您的业务逻辑中,您可以直接调用API操作

<?php
use Amz\AplusContent\Api\AplusContent;
use Ebay\Sell\Account\Api\Program;

$api = new AplusContent();

$docs = $api->searchContentDocuments(['marketplaceId'=>'xxxxxx']);

作者