Pratik
Pratik

Reputation: 11745

Query on twitterfall.com for accessing live Twitter feeds?

The site twitterfall.com provides all live Twitter feeds by almost everyone with some delay. How can I access or get live tweets (of everybody) from this site or any other option, that you suggest to my C# .NET application?

Upvotes: 2

Views: 679

Answers (6)

Pratik
Pratik

Reputation: 11745

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;
using LinqToTwitter;
using LinqToTwitter.Common;

namespace TwitterConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {

            Console.WriteLine("Here We go .. ");

            var twitterCtx = new TwitterContext();

            var publicTweets =
                from tweet in twitterCtx.Status
                where tweet.Type == StatusType.Public
                select tweet;

            publicTweets.ToList().ForEach(
                tweet => Console.WriteLine(
                    "User Name: {0}, Tweet: {1}",
                    tweet.User.Name,
                    tweet.Text));

            Console.WriteLine("Press2Exit");
            Console.ReadKey();
        }
    }
}

Have a Look here !!

Upvotes: 0

Ruben
Ruben

Reputation: 523

For .NET I suggest twitterizer,

"the .NET library designed for quick and easy Twitter integration" - twitterizer.net

You could also take a look at the Twitter API and create your own Twitter library.

Upvotes: 1

Danish Khan
Danish Khan

Reputation: 1891

You can use any of the popular framework like Twitterizer or use the Twitter API to interact with Twitter. But in order to fetch the tweets, you would have to develop your own logic.

Basically,

  • You would need to poll Twitter to check for the available status updates for the users you have at regular intervals.

  • You can have multiple threads to keep a track of different users.

  • You would also have to be cautious about hitting the per hour request limit for the Twitter API

Upvotes: 0

smartcaveman
smartcaveman

Reputation: 42246

LINQ to Twitter is a solid API. http://linqtotwitter.codeplex.com/. If you scroll to the end of the main page they have a list of sites that use it.

Upvotes: 3

Erik Giberti
Erik Giberti

Reputation: 1235

You should write your code against the Twitter API instead. You can get access to the firehose if you beg, but most likely, what you need is available in the Stream API Look at the stream api: http://dev.twitter.com/pages/streaming_api_methods

Upvotes: 1

Aaronontheweb
Aaronontheweb

Reputation: 8404

I don't know if Twitterfall has an API beyond the one you can use for searching replies. If you're looking to index a large volume of tweets I'd recommend using a service like Collecta instead: http://developer.collecta.com/

Upvotes: 0

Related Questions