ThimblClient
1.0.0
是分散式微博協定的小型客戶端:thimbl
我在很多方面都遵循 Thimbl Python 客戶端的風格。
該版本正在開發中,請自行負責在生產環境中使用它。
gem install thimbl
require 'rubygems'
require 'thimbl'
thimbl =
Thimbl::Base.new(
'[email protected]',
{
:bio => 'my bio',
:website => 'my website',
:mobile => 'my mobile',
:email => 'my email',
:name => 'my name'
}
)
thimbl.follow 'dk', '[email protected]'
thimbl.fetch
thimbl.messages
thimbl.post 'My first post'
thimbl.push 'password'
gem 帶有一個shell 指令,你可以像這樣使用它:
thimblr setup '[email protected]'
thimblr follow 'dk' '[email protected]' 'my password'
thimblr print
thimblr post 'My first message :)' 'my password'