1. Go to this page and download the library: Download laraditz/lazada 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/ */
laraditz / lazada example snippets
app('lazada')->auth()->authorizationUrl(); // give URL to seller to authorize app
app('lazada')->order()->get(order_id: '16090'); // get specific order
use Lazada;
use Laraditz\Lazada\Exceptions\LazadaAPIError;
try {
// Generate access token. Get the code after seller has authorized the app.
$accessToken = Lazada::auth()->accessToken(code: '0_123456_XxxXXXXxxXXxxXXXXxxxxxxXXXXxx');
} catch (LazadaAPIError $e) {
// Catch API Error
// $e->getMessage()
// $e->getMessageCode()
// $e->getRequestId()
// $e->getResult() // raw response
throw $e;
} catch (\Throwable $th) {
throw $th;
}
// Get order list
Lazada::order()->list(created_after: '2023-11-17T00:00:00+08:00');