简体   繁体   English

在追随者的墙上张贴

[英]Post in the wall of a follower

How to update status of a specific user on twitter using LinqToTwitter I tried this : 如何使用LinqToTwitter在Twitter上更新特定用户的状态,我尝试了以下操作:

 twitterCtx = new TwitterContext(auth);

 twitterCtx.UpdateStatus("Welcom  " + DateTime.Now.ToString(), "userId");

the probleme is that update status of all my followers 问题是我所有关注者的更新状态

Thanks, 谢谢,

Do you mean sending a direct message to another twitter user? 您是说直接向其他Twitter用户发送消息吗?

This describes how to send a direct message: 描述了如何发送直接消息:

var message = twitterCtx.NewDirectMessage("16761255", "Direct Message Test - " 
                                      + DateTime.Now);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM