Unofficial Rust library for the Twitter API.
This library allows you to:
- get your timeline,
- update your timeline.
This library uses the rust-oauth library (please to see oauth-client
).
Add this to your Cargo.toml
:
[dependencies]
twitter-api = "*"
and this to your crate root:
extern crate twitter_api;
See examples.