Twitterizer - 如何发布回复?
我正在将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TwitterStatus.Update(...)
重载之一接受StatusUpdateOptions
参数。此参数允许您使用InReplyToStatusId
属性指定推文回复的状态。例如,(我徒手写了这段代码)
One of the
TwitterStatus.Update(...)
overloads accepts aStatusUpdateOptions
parameter. This parameter allows you to specify the status that a tweet is in reply to with aInReplyToStatusId
property.For example, (I'm freehanding this code)