cpliakas/magento-client-php
最新稳定版本:0.1.1
Composer 安装命令:
composer require cpliakas/magento-client-php
包简介
A PHP client library that consumes Magento's REST and XMLRPC APIs
README 文档
README
Provides a client library to make REST and XMLRPC calls to a Magento instance.
Installation
Magento Client Library For PHP can be installed with Composer by adding it as a dependency to your project's composer.json file.
{
"require": {
"cpliakas/magento-client-php": "*"
}
}
After running php composer.phar update on the command line, include the
autoloader in your PHP scripts so that the SDK classes are made available.
require_once 'vendor/autoload.php';
Please refer to Composer's documentation for more detailed installation and usage instructions.
Usage
XMLRPC
The following example returns a list of products with SKUs that start with "123":
use Magento\Client\Xmlrpc\MagentoXmlrpcClient; $client = MagentoXmlrpcClient::factory(array( 'base_url' => 'http://magentohost', 'api_user' => 'api.user', 'api_key' => 'some.private.key', )); $filters = array( 'sku' => array('like' => '123%'), ); $result = $client->call('catalog_product.list', array($filters));
Rest
The following example returns a list of products:
use Magento\Client\Rest\MagentoRestClient; $client = MagentoRestClient::factory(array( 'base_url' => 'http://magentohost', 'consumer_key' => 'abc123...', 'consumer_secret' => 'def456...', 'token' => 'ghi789...', 'token_secret' => 'jkl012...', )); $result = $client->get('/api/rest/products')->send()->json();
Refer to Guzzle's documentation for more information on sending requests to the server.
统计信息
- 总下载量: 64.7k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 55
- 点击次数: 1
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2013-12-20