How to get Twitter feed via username request?

I currently have the following URL, but it is looking for a keyword, not just a user feed.

http://search.twitter.com/search.atom?q=from%3AUSERNAME

I want my users to be able to specify only the username there, and the feed will be displayed on their profile.

What url should I use to get a user feed, including old posts?

+5
source share
1 answer

I think you are looking for:

http://twitter.com/statuses/user_timeline/%USERID%.rss

If% USERID% is the identifier of the user in question.

For example, the URL of my own timeline:

http://twitter.com/statuses/user_timeline/16979198.rss

with 16979198 being my user number.

UPDATE

API Twitter, :

http://twitter.com/statuses/user_timeline/%USERNAME%.rss

% USERNAME% - , .

:

http://twitter.com/statuses/user_timeline/jamiedixon.rss

.rss , .json .atom

API Twitter . :

http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-user_timeline

+21

All Articles