I currently have the following URL but it searchs for a keyword rather than just the users feed.
I want my users to be able to provide there username only and a feed be displayed on their profile.
What url should i use to obtain a users feed including old posts?
I think what you're looking for is:
Where %USERID% is the ID of the user in question.
For example, the url to my own timeline is:
with 16979198 being my user id number.
UPDATE
According to the Twitter API, you can also do the same with the users username as follows:
Where %USERNAME% is the username of the person who's feed you'd like to view.
For example:
You can also replace the
.rss
portion of the link with other data types such as.json
.atom
For further information on the Twitter API and Timelines, visit here:
http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_timeline