WooCommerce SDK for Dart
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.
Complete Usage Example
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:woocommerce_api/woocommerce_api.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new MyHomePage(title: 'WooCommerce API Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
List<Widget> products = [];
Future getProducts() async {
/// Initialize the API
WooCommerceAPI wc_api = new WooCommerceAPI(
"https://www.yourwebsite.com",
"ck_your_consumer_key",
"cs_your_consumer_secret"
);
/// Get data using the endpoint
var p = await wc_api.getAsync("products");
return p;
}
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: FutureBuilder(
future: getProducts(),
builder: (_, s){
if(s.data == null){
return Container(
child: Center(
child: Text("Loading..."),
),
);
}
return ListView.builder(
itemCount: s.data.length,
itemBuilder: (_, index){
/// create a list of products
return ListTile(
leading: CircleAvatar(
child: Image.network(s.data[index]["images"][0]["src"]),
),
title: Text(s.data[index]["name"]),
subtitle: Text("Buy now for \$ " + s.data[index]["price"]),
);
}
);
},
),
);
}
}
Example of making a POST (Create a customer)
Future createCustomer() async {
try {
var response = await wooCommerceAPI.postAsync(
"customers",
{
"email": 's@c.com',
"password": "123",
"billing": {
"first_name": "Samarth",
}
},
);
print(response); // JSON Object with response
} catch (e) {
print(e);
}
}
Report any issues if you face any or drop me an email at samarthagarwal@live.com
Libraries
Dart
- dart:ui
- Built-in types and core primitives for a Flutter application. [...]
- dart:async
- Support for asynchronous programming, with classes such as Future and Stream. [...]
- dart:collection
- Classes and utilities that supplement the collection support in dart:core. [...]
- dart:convert
- Encoders and decoders for converting between different data representations, including JSON and UTF-8. [...]
- dart:core
- Built-in types, collections, and other core functionality for every Dart program. [...]
- dart:developer
- Interact with developer tools such as the debugger and inspector. [...]
- dart:math
- Mathematical constants and functions, plus a random number generator. [...]
- dart:typed_data
- Lists that efficiently handle fixed sized data (for example, unsigned 8 byte integers) and SIMD numeric types. [...]
- dart:io
- File, socket, HTTP, and other I/O support for non-web applications. [...]
- dart:isolate
- Concurrent programming using isolates: independent workers that are similar to threads but don't share memory, communicating only via messages. [...]