bricre / amazon-selling-partner-sdk-fba-small-and-light
基于亚马逊销售伙伴API FBA小型和轻量级OpenAPI定义生成的API客户端
v1
2021-09-23 22:34 UTC
Requires
- allansun/openapi-runtime: ^2.1
Requires (Dev)
- allansun/openapi-code-generator: ^0.2.5
- allansun/openapi-parser: ^2.1.4
This package is auto-updated.
Last update: 2024-09-24 05:30:51 UTC
README
使用allansun/openapi-code-generator从亚马逊的Swagger文件生成代码。
生成的代码具有良好的自我文档,带有适当的PHPDoc注释。
请参阅亚马逊的文档以了解详细的API行为说明。
安装
composer require bricre/amazon-selling-partner-sdk-fba-small-and-light
您还需要一个基于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\FbaSmallAndLight\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']);
作者
- Allan Sun - 初始工作