Expand description
A crate for creating Twitter bots
ยงExample
use rust_twitter_bot_lib::*;
fn main() {
let example_bot = TwitterBot::new()
.consumer_key(YOUR_CONSUMER_KEY)
.consumer_secret_key(YOUR_CONSUMER_SECRET_KEY)
.access_token(YOUR_ACCESS_TOKEN)
.secret_access_token(YOUR_SECRET_ACCESS_TOKEN);
let res = example_bot.tweet("๐ฆ + ๐ฆ = ๐ #myfirstTweet").unwrap();
println!("{:?}", res);
}
Structsยง
- Tweet
- Struct provided by TwitterBot methods
- Twitter
Bot - The main struct provided by this crate. See crate documentation for more information.
- User
- Struct provided by TwitterBot methods