Hi,
It depends on what you are willing to do, but you can either use the Twitter Search API or Twitter FilteredStream.
There are examples in the documentation.
Linvi
It depends on what you are willing to do, but you can either use the Twitter Search API or Twitter FilteredStream.
There are examples in the documentation.
var tweets = Search.SearchTweets("hello"); var firstTweet = tweets.First(); // This value can be null if the tweet was not published with coordinatesvar fistTweetCoordinates = firstTweet.Coordinates;