LinqToTwitter没有看到所有私人列表

时间:2013-08-15 11:05:40

标签: c# linq linq-to-twitter

我正在尝试使用linqtotwitter查看经过身份验证的用户的所有私有列表。但是,这只显示一个私人列表,即使列表中还有另外18个。它似乎随机选择了这一个列表,因为它在Twitter网站上查看时位于上半部分。我的代码如下:

var lists =
   (from list in ctx.List
    where list.Type == ListType.Ownerships &&
    list.ScreenName == "screenname" 
    select new ListDetails
    {
        Name = list.Name
    }).ToList();

return lists;

1 个答案:

答案 0 :(得分:1)

只是我昏暗,当我应该使用SingleUser Authorizer时,我正在使用Application Only Authorizer

ITwitterAuthorizer twitterAuthorizer = new SingleUserAuthorizer