woocommerce_api 0.0.1 woocommerce_api: ^0.0.1 copied to clipboard
A package to interact with the WooCommerce API.
woocommerce_api #
A dart package to interact with the WooCommerce API. It uses OAuth1.0a behind the scenes to generate the signature and URL string. It then makes calls and return the data back to the calling function.
Getting Started #
1
-
Import the package
-
Initialize the SDK
WooCommerceAPI wc_api = new WooCommerceAPI( "http://www.mywoocommerce.com", "ck_...", "cs_..." );
- Use functions
`List _products = new List();
wc_api.getAsync("products?page=2").then((val) {
List parsedMap = JSON.decode(val.body);
setState(() {
parsedMap.forEach((f){
_products.add(f);
});
print(_products.length);
});
});`