hnp / kiotviet
为 Kiotviet 提供的包
v0.0.4
2023-02-15 03:58 UTC
Requires
This package is auto-updated.
Last update: 2024-09-15 09:41:25 UTC
README
通过 composer 安装
composer require hnp/kiotviet
配置
在项目开头添加以下代码段。
require 'vendor/autoload.php';
使用
use Huynp\Kiotviet\Client; use Huynp\Kiotviet\Product; use Huynp\Kiotviet\Category; $client = new Client($client_id, $client_secret); Lấy danh sách sản phẩm bao gồm tồn kho: $instance = new Product($client); var_dump($instance->getList($limit = 20, $page = 0)); Lấy danh sách Danh mục sản phẩm: $instance = new Category($client); var_dump($instance->getList($limit = 20, $page = 0)); ## Đang cập nhật...