AE_SDK
A simple and type-safe SDK for Aliexpress (system tools, dropshipping and affiliate) APIs.
Disclamer
This library is currently under heavy development. More endpoints and documentation will be coming.
Installation
npm i -D ae_sdk
pnpm add -D ae_sdk
yarn add ae_sdk
Usage
import { AEAffiliateClient } from "ae_sdk";
const client = new AEAffiliateClient({
app_key: "123",
app_secret: "123456abcdef",
session: "oauth_access_token",
});
Todo
- Update ds APIs according to aliexpress official website;
- Add better error handling and fix resp_result / error_result;
- Add in code documentation using
jsdoc
; - Add unit tests;