Amandeep singh
Amandeep singh

Reputation: 1883

How do i get twitter-feed of particular URL in my application?

I am developing an Android application. In this application I want the RSS feed of a particular Twitter page. But when I open that URL I didn't find rss icon, so I am not able to get RSS feed.

Can you give me any suggestion how to find RSS feed for that particular page?

Is there any way so that I mention my URL and it will give me rss file of that URL? Give me some suggestion for that.

Upvotes: 1

Views: 2024

Answers (4)

James Riter
James Riter

Reputation: 11

Its a little late but this should help you out.

Pull Twitter with PHP http://www.jamesriter.com/blog/2010/11/03/add-a-twitter-feed-with-php-advanced/

Upvotes: 1

Prabhu M
Prabhu M

Reputation: 3600

Just establish a http connection with this url "http://twitter.com/statuses/user_timeline/sachin_rt.rss" , where sachin_rt is the user name of sachin tendulkar. U can replace any user name there

U will get a xml file . parse it n get what ever u want.....

Upvotes: 2

rhinds
rhinds

Reputation: 10043

Not sure how much you can use RSS with twitter, as they largely expose their data via web services.

What is the information you wanted to get? if you just wanted to get users timelines (e.g. just peoples tweets) then you should have a look at Twitter4J - it is a library that provides a standard Java API around the Twitter web services and makes it very easy to access this kind of information.

There is an example walkthrough of a basic android app that uses Twitter4J to load a users timeline using twitter4j (including source code for entire application) here:

I know its not RSS - but hopefully it is still a helpful avenue to explore.

Upvotes: 0

Rasmus Øvlesen
Rasmus Øvlesen

Reputation: 510

I have not used twitter much, but i just found this that might help you: http://support.twitter.com/groups/31-twitter-basics/topics/111-features/articles/15361-how-to-find-your-rss-feed

Upvotes: 0

Related Questions