covergenius/ebay-rest-php-sdk
Composer 安装命令:
composer require covergenius/ebay-rest-php-sdk
包简介
https://developer.ebay.com/docs
README 文档
README
Getting Started
Requirements
- PHP ^7.3
Installation
You can install this package by using Composer.
composer require covergenius/ebay-rest-php-sdk
Creating the client
The create() method for the available APIs allows a config as an array to be passed to it. This accepts the typical
configuration that you would pass to the Guzzle client. See the Guzzle docs https://docs.guzzlephp.org/en/stable/quickstart.html
use CoverGenius\EbayRestPhpSdk\Api\FulfillmentApi; $fulfillmentApi = FulfillmentApi::create([ 'base_uri' => 'https://api.sandbox.ebay.com', 'headers' => [ 'Authorization' => 'Bearer ACCESS_TOKEN', ] ]);
Alternatively, you can create a new GuzzleHttp Client instance to pass into the API class' constructor.
use CoverGenius\EbayRestPhpSdk\Api\FulfillmentApi; use GuzzleHttp\Client; $client = new Client([ 'base_uri' => 'https://api.sandbox.ebay.com', 'headers' => [ 'Authorization' => 'Bearer ACCESS_TOKEN', ] ]); $fulfillmentApi = new FulfillmentApi($client);
Available APIs
Fulfillment API
Accessing the response
use CoverGenius\EbayRestPhpSdk\Api\FulfillmentApi; $config = []; $fulfillmentApi = FulfillmentApi::create($config); $order = $fulfillmentApi->getOrder(['orderId' => 'ORDER_ID']); // via getter $order->offsetGet('orderId'); // via array key $order['orderId'];
Testing
Running tests
Run composer test to test all suites. Alternatively, you can run the commands below.
composer test -- --filter testName composer test -- --group groupName
VCR tests
Important
-
You will need to generate a new access token and add it to the
EBAY_ACCESS_TOKENvariable in your.envfile. Using your valid access token, you may delete a vcr tape associated with the test you want to re-record. -
Resource IDs such as the
orderId,refundIdetc. may need to be updated if they do not exist in the sandbox account you're using for re-recording tests.
Steps
- Delete the old VCR file associated with the test you want to re-record.
- Re-run your tests.
covergenius/ebay-rest-php-sdk 适用场景与选型建议
covergenius/ebay-rest-php-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16.34k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2021 年 06 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 covergenius/ebay-rest-php-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 covergenius/ebay-rest-php-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 16.34k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 21
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-06-01