How can I find all the followers a Twitter user has using Linq2Twitter?
All I can find in the documentation is a reference to the .Following property, not the .Followers property.
var result = from search in context.List
where search.Following //etc
How can I find the followers a Twitter user has if I provide the twitter username?
twitter.com/foobar // 'foobar' is the username.
The Twitter API is GET followers/ids so I have to guess that the Linq2Twitter code is probably something like the following:
The following code demonstrates how to get all followers of a particular user
Source: Linq2Twitter Github
LINQ to Twitter lets you query the social graph for friends and followers. Here's an example of how to get followers:
That will return IDs. Here's the full documentation: http://linqtotwitter.codeplex.com/wikipage?title=Listing%20Followers&referringTitle=Listing%20Social%20Graphs.
Joe