khanhicetea / lazada-php-sdk
A Lazada PHP SDK
1.2
2022-03-06 03:49 UTC
Requires
- php: ^7.2|^8.0
This package is auto-updated.
Last update: 2024-12-06 09:52:51 UTC
README
Lazada PHP SDK
Why ?
- Lazada official SDK is bad code (no tests, raw CURL implementations, no packagist package)
- Has 2 errors :
- LazopClient line 114, "no varriable named reponse"
- addApiParam in LazopRequest (use json_decode instead of json_encode)
- Remove default error handler so developer can assigned new error handler he want
$client = LazopClient(....) $client->errorHandler = function($requestUrl, $errorCode, $responseTxt) { // implement your error handler here };
NO GUARANTEE !!! I just fixed what I can !