Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I installed api twitter4j. I want to publish a message on twitter. How can I use twitter4j to publish? If anyone know another api more better can help me.

share|improve this question

1 Answer

If you already have your Twitter object set up this is update yoru status:

Status status = twitter.updateStatus(statusStr);

You should do that from a background thread since it is a web activity, so it doesn't freeze the UI. And you should catch and handle the possible exceptions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.