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.

I want to post tweets directly from android applications. Is there any official Twitter android SDK like we have in facebook Please tell me how to achieve this

share|improve this question
try the search box in this very page – njzk2 Oct 7 '11 at 9:30

3 Answers

There is no official Android SDK for twitter, only 3rd party libraries. These are the Java based options twitter mentions . I've used T4J and Scribe professionally and though T4J does more out of the box, I recommend using Scribe + Jackson JSON parser. Scribe handles the hardest bit which is all the authentication code and Jackson is a fast, lightweight JSON > POJO processor.

I think in reality given your question has so little detail or self directed research, all you are going to get here is opinion. There are several things to consider that aren't specified in your question that will determine your choice:

  • Ease of development / initial development cost/effort.
  • Scalability, one trick pony or are you going to be using a bigger set of the API?
  • Is the footprint or dependencies of the library a factor?
  • How the client authenticates; oAuth1.0a, xAuth, OOB PIN request?
  • Testability. Different libraries are sometimes harder to stub/mock out when unit testing your application. T4J is an example here.

Other sources to consider:

  • Enter Twitter Android SDK into google.com
  • Or even better, enter Twitter Android SDK into stackoverflow.com
  • Looking at the twitter developer site and see what they suggest

5 minutes scanning the above results + determining your unsaid requirements will fit your brief: Please tell me how to achieve this.

share|improve this answer
1  
:) I liked the last line of this answer...a lot :) :) – Viru Jul 15 '12 at 5:22

Kindly go through the following link: http://www.londatiga.net/it/how-to-post-twitter-status-from-android/ . This might be helpful for you

share|improve this answer

Yes, you can find Twitter APIs that you can use in Android apps.

  • This link will show you some examples.
  • This one points to the official documentation of the Twitter REST protocol.
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.