Swanman's Horizon

性欲をもてあましつつなんらかの話をするよ。

TTwitter私家版 111105。

Delphi用のTwitterライブラリであるTTwitterが動かなくなってたので、その辺の不具合を直したり、JSONライブラリをSuperObjectに差し替えたりしてる途中の何か。

とりあえずツイートするサンプル。

procedure TForm1.FormCreate(Sender: TObject);
  with Twitter1.ApplicationDetails do
  begin
    ApiKey := 'Consumer key';
    ApiSecret := 'Consumer secret';
  end;
  Twitter1.Username := 'User name';
  Twitter1.Login;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  Twitter1.PostTweet('えんばかさん公式でついったーらいぶらりつくってくだしあ');
end;

ダウンロードはこちらから。
http://twc.xrea.jp/junk/TTwitter/