This is a PHP SDK for AliExpress, adapted from the original SDK to be Composer-friendly. It allows developers to easily integrate with AliExpress services and APIs using PHP.
- Composer compatibility for easy installation and autoloading (PSR-4).
- Provides a simple interface to interact with AliExpress APIs.
- Log management and request handling built-in.
You can install the SDK via Composer. Simply add the repository to your composer.json
file and require the package:
composer require lpcs007/ae_php_sdk
Once installed, you can use the SDK to interact with AliExpress services as follows:
use AliExpress\Sdk\IopClient;
$client = new IopClient($url, $appKey, $secretKey);
// Now you can use $client to make API requests.
For more detailed examples, refer to the demo
directory included in this repository.
This SDK was adapted from the original AliExpress SDK. You can find the full documentation for the AliExpress API at:
Please refer to the official documentation for more details on the available methods, endpoints, and authentication requirements.
This project is licensed under the MIT License. See the LICENSE file for details.
Feel free to submit issues or pull requests if you have any suggestions or improvements.