Skip to content

viv7i/woocommerce_dart

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 parsedMap = JSON.decode(val.body);
    setState(() {
    parsedMap.forEach((f){
        _products.add(f);
    }); 
    print(_products.length);
    });
});

About

A dart package to interact with the WooCommerce REST API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 88.4%
  • Objective-C 11.6%