I'm developping an application that uses Twitter API to collect informations about users. I'm using linqToTwitter in my current project but it does not allow me a lot of thing that I want to do.
For example I need getting a follower list of a searched user. LinqToTwitter allowed me finding a user who the name is given and who is in the follower list of the authenticate user. The code is the following:
public List<User> RecupererFollower()
{
var friendship =
(from friend in MainPage.twitterCtxProp.Friendship
where friend.Type == FriendshipType.FollowersList
&& friend.SourceScreenName==MainPage.texte
select friend).ToList();
Followers = (from friend in friendship
select new User //Un utilisateur est créé grâce aux données récupérées précédemment.
{
Name = friend.ScreenName
}).ToList(); //Cette partie constitue la liste de tweets récupérés précédemment.
return Followers;
}
But even this doesn't work because this query requires a specific screenName of a particular user.
I don't want this I want more general functions.
What can I do? Someone knows other resources for Windows 8 metro application?