jspsystem / yahoo-shopping-api-client
A PHP package that assists in making requests to the Yahoo! Shopping API.
v1.0.0
2022-10-10 22:31 UTC
Requires
- php: ^8.0
- ext-curl: *
- ext-json: *
- ext-openssl: *
Requires (Dev)
- fakerphp/faker: ^1.20
- phpunit/phpunit: ^9
- vlucas/phpdotenv: ^5.4
This package is auto-updated.
Last update: 2024-12-16 05:28:05 UTC
README
A library that supports requests to the Yahoo! Shopping API.
Table of Contents
Requirements
- PHP ^8.0 (curl and json related packages are required.)
- curl >= 7.52.1
- openssl >= 1.1.0
Installation
composer require jspsystem/yahoo-shopping-api-client
A Simple Example
<?php use JSPSystem\YahooShoppingApiClient\Item\GetItemClient; $client = new GetItemClient('Set the acquired access token.'); $result = $client->request([ 'seller_id' => 'seller id', 'item_code' => 'item code', ]);
Supported API
License
Yahoo! Shopping API Support Library for PHP is released under the MIT License.
See the bundled LICENSE file for details.