riesenia/sps-webship-api
最新稳定版本:v2.0.0
Composer 安装命令:
composer require riesenia/sps-webship-api
包简介
SPS Webship Api PHP client implementation
README 文档
README
SPS Webship API PHP client implementation. See webservice documentation for details.
Installation
Install the latest version using composer require riesenia/sps-webship-api
Usage
Create API with username and password
use Riesenia\SpsWebship\Api; $api = new Api($username, $password);
Create shipment
$data = [ 'cod' => [ 'codvalue' => 12.30 ], 'insurvalue' => 12.30, 'notifytype' => 1, ... ]; if (!$api->createShipment($shipment)) { echo $api->getMessages(); }
Print shipment labels
$url = $api->printShipmentLabels(); if (!$url) { echo $api->getMessages(); }
Print end of day report
$url = $api->printEndOfDay(); if (!$url) { echo $api->getMessages(); }
统计信息
- 总下载量: 18.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-07