Generate a token to authorize access to your twitter account by following the guide here
Then place your API keys and OAuth tokens in a file ~/.cred
, separated by a line break:
api-key: API_KEY_HERE
api-sec: API_SECRET_HERE
tok: OAUTH_TOKEN_HERE
tok-sec: TOKEN_SECRET_HERE
If you're on Linux/Windows the best way is probably to download the binaries from the releases page here.
To build from source, install cargo via rustup; on unix systems this is as simple as
curl https://sh.rustup.rs -sSf | sh
Then type cargo install clit-rs
.
To get your profile, simply type:
tweet user
To view a user's profile, type e.g.
tweet user pinepapplesmear
tweet send "YOUR_TWEET_TEXT"
You can also use
tweet view
to view your own timeline.
A haskell package is included. It's fairly easy to use once you have the credentials set up, with three functions: one to post a status, one to get your timeline, and one to get a user profile.