imgur 1.0.0 copy "imgur: ^1.0.0" to clipboard
imgur: ^1.0.0 copied to clipboard

outdated

An Imgur api client for Dart.

imgur.dart #

An Imgur api client for Dart.

Usage #

A simple usage example to get your uploaded images:

import 'package:imgur/imgur.dart';

main() async {
  final client = Imgur(
      Authentication.fromToken('YOUR_IMGUR_ACCESS_TOKEN'));

  final resp = await client.account.getImages();
  print(resp.data);
}

Documentation #

A generated documentation is available on GoDoc.

License #

This project is licensed under the MIT License - see the LICENSE file for details