Reputation: 195
am trying to develop an android application that loads tweets for a particular hash tag from twitter. I only want to display the tweets for the user. I do not want users to login into there twitter accounts while using my application. How can i go about this.
Upvotes: 2
Views: 1081
Reputation: 4344
You can implement this by using Search api of twitter which does not require authorization, this are public searches and you can use it to mine tweets which are publicly available.
now, i would suggest following.
Twitter4J
lib, they have pretty solid implementation hence with almost no effort you can perform integration.Upvotes: 3