ThimblClient
1.0.0
分散マイクロブログ プロトコルの小規模クライアント: thimbl
私はさまざまな点で Thinbl 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 にはシェル コマンドが付属しており、次のように使用できます。
thimblr setup '[email protected]'
thimblr follow 'dk' '[email protected]' 'my password'
thimblr print
thimblr post 'My first message :)' 'my password'