aliexpress_sdk 1.0.0
aliexpress_sdk: ^1.0.0 copied to clipboard
A dart implementation for aliexpress sdk
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:requests/requests.dart';
Example Usage:
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