我正在开发一个使用 Twitter API 来收集用户信息的应用程序。我在当前项目中使用 linqToTwitter,但它不允许我做很多我想做的事情。
例如,我需要获取搜索用户的关注者列表。LinqToTwitter 允许我找到一个用户,该用户的名字是给定的,并且他在经过身份验证的用户的关注者列表中。代码如下:
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;
}
但即使这样也不起作用,因为此查询需要特定用户的特定屏幕名称。
我不想要这个我想要更通用的功能。
我能做些什么?有人知道 Windows 8 Metro 应用程序的其他资源吗?