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

outdated

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 #

  • Import the package

import 'package:woocommerce_api/woocommerce_api.dart';

  • 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 products = val;
    print("Got " + products.length + "products received");
});
60
likes
0
pub points
84%
popularity

Publisher

verified publishersamarthagarwal.in

A package to interact with the WooCommerce API.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

crypto, flutter, http

More

Packages that depend on woocommerce_api