PHP code example of alzen8work / lazada-php-sdk

1. Go to this page and download the library: Download alzen8work/lazada-php-sdk 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/ */

    

alzen8work / lazada-php-sdk example snippets


use Lazada\LazopClient;
use Lazada\LazopRequest;

...
$c = new LazopClient('https://api.lazada.com/rest', '${appKey}', '${appSecret}');
$request = new LazopRequest('/mock/api/get');
$request->addApiParam('api_id',1);
$request->addHttpHeaderParam('cx','test');
    
var_dump($c->execute($request));
...

bash
composer