aliexpress_sdk 1.1.0
aliexpress_sdk: ^1.1.0 copied to clipboard
A dart implementation for aliexpress sdk based on the official python sdk. Used to communicate with the aliexpress opensea api. Comes with functions to generate hash for secret key.
Aliexpress SDK written in dart. Used to call Aliexpress APIs. Built-in signed hash and different request methods (POST, GET) to call API. Based on the aliexpress python sdk.
Features #
Calls Aliexpress APIs in dart package. Generates hashes for request authentication.
Usage #
Start by importing the library
import "package:aliexpress_sdk/aliexpress_sdk.dart";
Example Usage:
final client = IopClient("api-sg.aliexpress.com/rest", 'your_app_key', 'your_app_secret');
final request = IopRequest('/auth/token/create');
request.addParam("code", "3_508156_0B6q8xRJgGk4iSTVqmhSSaKC566");
request.addParam('uuid', 'uuid');
final response = await client.execute(request);
Additional information #
Examples are found in the example folder