Twitterizer - 如何发布回复?

发布于 2024-11-06 04:26:25 字数 188 浏览 2 评论 0原文

我正在将 Twitterizer 包装器用于新的 ASP.NET 项目。我有一个网格视图,向我显示 Twitter 时间线。我在每一行都有一个按钮来回复特定的状态消息。但我只是回复这样的消息:“@screenName 这是一条回复”。这只是我推特上的一个新状态更新。但该状态的 in_reply_to_user_id 字段未填写。 我应该怎么做才能正确回复消息?

I'm using the Twitterizer wrapper for a new ASP.NET project. I have a gridview showing me the twitter timeline. I have a button in every row to reply to a specific status message. But i just reply a message like this: "@screenName this is a reply". This is just a new statusupdate on my twitter. But the in_reply_to_user_id field of that status is not filled in.
What should i do to reply correctly to a message?

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

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

发布评论

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

评论(1

情丝乱 2024-11-13 04:26:25

TwitterStatus.Update(...) 重载之一接受 StatusUpdateOptions 参数。此参数允许您使用 InReplyToStatusId 属性指定推文回复的状态。

例如,(我徒手写了这段代码)

StatusUpdateOptions options = new StatusUpdateOptions();
options.InReplyToStatusId = 12345;
TwitterResponse<TwitterStatus> replyResult = TwitterStatus.Update(tokens, "@somebody this is a reply", options);

One of the TwitterStatus.Update(...) overloads accepts a StatusUpdateOptions parameter. This parameter allows you to specify the status that a tweet is in reply to with a InReplyToStatusId property.

For example, (I'm freehanding this code)

StatusUpdateOptions options = new StatusUpdateOptions();
options.InReplyToStatusId = 12345;
TwitterResponse<TwitterStatus> replyResult = TwitterStatus.Update(tokens, "@somebody this is a reply", options);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文