woocommerce_api 0.0.1 copy "woocommerce_api: ^0.0.1" to clipboard
woocommerce_api: ^0.0.1 copied to clipboard

outdatedDart 1 only

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); }); });`

61
likes
0
pub points
83%
popularity

Publisher

verified publishersamarthagarwal.in

A package to interact with the WooCommerce API.

Homepage

License

unknown (LICENSE)

Dependencies

crypto, flutter, http, query_string

More

Packages that depend on woocommerce_api