Reputation: 3286
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?
Upvotes: 0
Views: 1573
Reputation: 3730
A couple of helpful links
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.
Upvotes: 2