tweet9ra/crpt-oms-api-client
Composer 安装命令:
composer require tweet9ra/crpt-oms-api-client
包简介
Client for CRPT OMS system
README 文档
README
Installation
Composer
composer require lamoda/crpt-oms-api-client
Description
This library implements API client for the Order Management Station (OMS) of the CRPT (https://crpt.ru/)
Library implements V2 version of OMS Api's
Currently this client implements just a subset of the OMS Api methods.
Usage
<?php use GuzzleHttp\Client; use Lamoda\OmsClient\Impl\Serializer\SymfonySerializerAdapterFactory; use Lamoda\OmsClient\V2\OmsApi; $client = new Client([ // Uri to your OMS 'base_uri' => 'http://oms_uri', 'timeout' => 2.0, ]); $serializer = SymfonySerializerAdapterFactory::create(); $omsApi = new OmsApi($client, $serializer); /* * Call all required methods of API */ // $response = $omsApi->getICBufferStatus();
Signing of OMS requests
It is also possible to send signed OMS requests for orders.
To do that implement \Lamoda\OmsClient\V2\Signer\SignerInterface.
Signer must return signature for the given data (no data itself transformation is required).
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-02-22