使用 tweetsharp 拉取我的公共时间线,但不返回任何转发

发布于 2024-09-10 00:13:56 字数 423 浏览 1 评论 0原文

我目前正在使用 TweetSharp 将我的公共时间线拉入我的 Web 应用程序。

一切正常,除了我似乎没有收到我发布的任何转发。

有没有办法让我也能得到我的转发?

下面是我当前用来提取推文的代码片段。

感谢您的任何帮助或建议!

        var twitter = FluentTwitter.CreateRequest()
                        .Statuses()
                        .OnUserTimeline()
                        .Take(5)
                        .For(UserId);

        var response = twitter.Request();

I am currently using TweetSharp to pull in my public timeline to my web application.

Everything is working except I don't seem to be getting any retweets that I post.

Is there a way that I can get my retweets also?

Below is a snip of the code that I am currently using to pull in my tweets.

Thanks for any help or advice!

        var twitter = FluentTwitter.CreateRequest()
                        .Statuses()
                        .OnUserTimeline()
                        .Take(5)
                        .For(UserId);

        var response = twitter.Request();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

○愚か者の日 2024-09-17 00:13:56

我想我刚刚在 TweetSharp 讨论板上回复了您的帖子。

我会在这里复制它,以防你不在那里检查......

我可以告诉你,通过 Twitter api 是可能的。用户时间线端点支持“include_rts”参数来启用此确切功能。

例如: http://api.twitter.com /1/statuses/user_timeline.xml?screen_name=twitterapi&include_rts=true (如果提示登录,只需点击取消)

我不知道 TweetSharp 是否已实现该参数或是否会添加它。我认为不再有任何开发人员致力于 TweetSharp。我实际上是来自不同库 Twitterizer 的开发人员,填补了支持空白。

I think I just answered your post on the TweetSharp discussion board.

I'll copy it here in case you don't check there ...

I can tell you that it is possible through the twitter api. The user timeline endpoint supports an 'include_rts' parameter that enables this exact functionality.

For example: http://api.twitter.com/1/statuses/user_timeline.xml?screen_name=twitterapi&include_rts=true (if prompted for login, just hit cancel)

I don't know if TweetSharp has implemented that parameter or if it will get added. I don't think there are any developers working on TweetSharp anymore. I'm actually a developer from a different library, Twitterizer, filling in the support gap.

终止放荡 2024-09-17 00:13:56

我分叉了 TweetSharp (RetweetsForListTweetsOnSpecifiedUser) 并放入代码中添加 include_rts 作为这些方法的参数。传递 true 或 false、1 或 0 作为值。

I forked TweetSharp (RetweetsForListTweetsOnSpecifiedUser) and put in the code to add the include_rts as a parameter on those methods. Pass a true or false, 1 or 0 in as a value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文