达卡实验室 / 云快递
云途快递的非官方PHP SDK
v1.0
2019-02-20 16:05 UTC
Requires
- php: >=7.1
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
This package is auto-updated.
Last update: 2024-09-08 16:11:52 UTC
README
云途快递的非官方PHP SDK (https://www.yunexpress.com/)
安装
composer require dakalab/yun-express
使用
$client = new Dakalab\YunExpress\Client($account, $secret);
try {
$tracking = $client->getTrackingInfo($trackingNumber);
print_r($tracking);
} catch (\Exception $e) {
echo $e->getMessage();
}