George J
George J

Reputation: 195

how to integrate twitter in android app

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

Answers (2)

Techfist
Techfist

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.

  1. Either user Twitter4J lib, they have pretty solid implementation hence with almost no effort you can perform integration.

http://twitter4j.org/javadoc/

  1. Consume Twitter public search API directly, in this case you will get some space to perform customisations from your end if required.

https://dev.twitter.com/

Upvotes: 3

Sheraz Ahmad Khilji
Sheraz Ahmad Khilji

Reputation: 8358

You can use Twitter Helper for integrating twitter

Upvotes: 0

Related Questions