PHP code example of khanhicetea / kiot-viet-client
1. Go to this page and download the library: Download khanhicetea/kiot-viet-client library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
khanhicetea / kiot-viet-client example snippets
php
$client = new VienThuong\KiotVietClient(<YOUR_CLIENT_ID>, <YOUR_CLIENT_SECRET>);
// Fetch access token
$token = $client->fetchAccessToken();
// Fetch list product
$productResource = new ProductResource($client);
$productList = $productResource->list();