wordpress_api 0.1.2 wordpress_api: ^0.1.2 copied to clipboard
A WordPress API client for flutter with support for WooCommerce and custom namespaces.
WordPress API client for Dart (Flutter) #
Description #
A WordPress API client for flutter with support for WooCommerce and custom namespaces.
Features #
- Retrieve data from any endpoint.
- Retrieve data from any namespace.
Installation #
In the dependencies:
section of your pubspec.yaml
, add the following line:
wordpress_api: <latest_version>
Usage #
- Import the package
import 'package:wordpress_api/wordpress_api';
- Initialize WPAPI
WordPressAPI api = WordPressAPI('site.com');
- Retrieve data from an endpoint
void fetchPosts() async {
final res = await api.get('posts');
if(res['data'] != null) {
print(res['data']);
} else {
print(res['error']);
}
}
To Do #
- Add authentication function
- Add postAsync function
Contributions are welcome, report any issues here