woosignal 1.0.2 copy "woosignal: ^1.0.2" to clipboard
woosignal: ^1.0.2 copied to clipboard

outdated

WooCommerce REST API for dart, connect a WooCommerce store and start developing with our interface for their API endpoints.

WooCommerce API Dart plugin #

Official WooSignal WooCommerce package

Build apps for WooCommerce easier with our new package. Our API provides many requests types e.g. getProducts, getOrders, getCustomers and many more. Free to get started, see the simple examples below

For help getting started with WooSignal, view our online documentation, which offers a more detail guide.

Usage #

To use this plugin, add woosignal as a dependency in your pubspec.yaml file.

Example #

import 'package:woosignal/woosignal.dart';

...

// EXAMPLE GET PRODUCTS
_getProducts() async {

        // CONFIG FOR WOOSIGNAL
        var wsConfig = {
          "appKey":"your app key",
          "debugMode":true
        };

        // CREATING AN INSTANCE
        WooSignal.getInstance(config: wsConfig).then( (wcStore) {

         wcStore.getProducts().then( (products) {
              print(products[0].name);
        });

  });
}

Disclaimer: This plugin is not affiliated with or supported by Automattic, Inc. All logos and trademarks are the property of their respective owners.

58
likes
0
pub points
85%
popularity

Publisher

verified publisherwoosignal.com

WooCommerce REST API for dart, connect a WooCommerce store and start developing with our interface for their API endpoints.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

device_info, dio, flutter, shared_preferences, uuid

More

Packages that depend on woosignal