Search code examples
androidtwittertweets

Retrieve tweets from own twitter account wall


I want to retrieve tweets from my twitter account wall.

After retrieving the tweets from wall of my own twitter account wall i want to show those tweets in a list.

Showing in a list is not a problem. But i am unable to retrieve tweets from my own twitter account wall. Can anyone help me?


Solution

  • A couple of helpful links

    https://dev.twitter.com/docs

    https://dev.twitter.com/docs/using-search

    You would place a GET request against the API with parameters based on your needs.

    The second page gives you specific syntax on how to find tweets.

    For example: http://search.twitter.com/search.json?q=%40twitterapi

    This finds any tweets mentioning @twitterapi. Replacing it with q=from:twitterapi would find any tweets from @twitterapi. Substitute your username, and don't forget to encode the URL string.