如何查询来自其他用户的推文

本文关键字:用户 其他 何查询 查询 | 更新日期: 2023-09-27 18:30:17

给定用户获取最后 50 条推文的查询是什么 (Ex:@Microsoft)使用 LinqToTwitter 库?

我正在以单用户身份进行身份验证,因为我无法使用应用程序身份验证进行身份验证。

 var auth = new SingleUserAuthorizer()
        {
            Credentials = new SingleUserInMemoryCredentials()
            {
                ConsumerKey = "Key"
                , ConsumerSecret = "Key"
                , TwitterAccessToken = "Key"
                , TwitterAccessTokenSecret = "key"
            }
            ,
            AuthAccessType = AuthAccessType.Write
        };

如何查询来自其他用户的推文

我正在使用 OAuth 令牌进行身份验证,但我认为它应该没有任何不同。 你试过这样的事情吗?

var twitter = new LinqToTwitter.TwitterContext(auth);
var tweets = twitter.Status
                    .Where(t => t.Type == LinqToTwitter.StatusType.User && t.ID == "Microsoft")
                    .OrderByDescending(t => t.CreatedAt)
                    .Take(50);
相关文章: