Twitter4j

프로그래밍/연동 2010. 4. 8. 17:14

Twitter4j

http://twitter4j.org/en/index.html

 

위 사이트에서 제공하는 라이브러리를 사용하면 twitter 에서 제공하는 API java 에서 사용할 수 있다.

 

public void updateStatus() throws Exception{

             Twitter twitter = new TwitterFactory().getInstance( "…", "…");

             Status status = twitter.updateStatus("this is twitter4j test");

             System.out.println("Successfully updated the status to [" + status.getText() + "].");

       }

getInstance 부분에는 트위터 아이디와 비밀번호가 순서대로 인자로 들어간다.

: