Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enwi/darttindie
Dart wrapper for Tindie Order API
https://github.com/enwi/darttindie
api-rest dart flutter tindie
Last synced: 14 days ago
JSON representation
Dart wrapper for Tindie Order API
- Host: GitHub
- URL: https://github.com/enwi/darttindie
- Owner: enwi
- License: mit
- Created: 2022-01-04T16:51:44.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-11T18:24:13.000Z (almost 2 years ago)
- Last Synced: 2024-12-20T23:42:17.256Z (14 days ago)
- Topics: api-rest, dart, flutter, tindie
- Language: C++
- Homepage:
- Size: 123 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[![Discord](https://img.shields.io/discord/781219798931603527.svg?label=enwi&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/YxVyJWX62h)
[![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/enwi/darttindie?label=release)](https://github.com/enwi/darttindie/releases)# DartTindie
Dart wrapper for Tindie Order API> Note: Never publish your Tindie API Key! It is a secret and should remain one!
## Features
- Get all orders (last 20)
- Get all shipped orders (last 20)
- Get all unshipped orders (last 20)## Getting started
```
flutter pub add darttindie
```## Usage
Instantiate `Tindie` object with API key and username
```dart
final tindie = Tindie(
apikey: 'api key',
username: 'username',
);
```Get last 30 orders
```dart
tindie.getOrders();
```Get last 30 unshipped orders
```dart
tindie.getOrders(shipped: false);
```