twitter_kit 0.0.3 copy "twitter_kit: ^0.0.3" to clipboard
twitter_kit: ^0.0.3 copied to clipboard

outdated

Project to make it easier to access the Twitter API. Referring to the Twitter kit for Android.

twitter_kit #

Project to make it easier to access the Twitter API. Referring to the Twitter kit for Android.

GET https://api.twitter.com/1.1/statuses/show.json #

final Twitter twitter = Twitter(consumerKey, consumerSecret, accessToken, accessSecret);
final StatusesService statusesService = twitter.statusesService;
await statusesService.show("1242645624106807297", true, true, true).then((response) {
  if (response.isSuccessful) {
    final Tweet tweet = response.body;
    print(tweet.toJson());
  } else {
    print(response.error);
  }
});
2
likes
0
pub points
0%
popularity

Publisher

verified publisherkitproject.info

Project to make it easier to access the Twitter API. Referring to the Twitter kit for Android.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

chopper, flutter, json_annotation, oauth1

More

Packages that depend on twitter_kit