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

Twitter API Library

twitter.dart #

Build Status pub package

Twitter Library for Dart.

Example #

REST API #

import 'package:twitter/twitter.dart';

main () async {
  Twitter twitter= new Twitter('YOUR CONSUMER KEY', 'YOUR CONSUMER SERCRET',
                    'YOUR ACCESS TOKEN', 'YOUR ACCESS TOKEN SECERT');
  var response = await twitter.request("GET", "statuses/user_timeline.json");
  print(response.body);
  twitter.close();
}

TODO #

  • Write more detailed Example
  • Support Twitter Model

LICENSE #

MIT LICENSE

oauth.dart #

In this library, use oauth.dart in My repository. I fix it by develop original oauth 1 library.

8
likes
20
pub points
30%
popularity

Publisher

unverified uploader

Twitter API Library

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

http, oauth

More

Packages that depend on twitter