简体   繁体   中英

Post in the wall of a follower

How to update status of a specific user on twitter using LinqToTwitter I tried this :

 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?

This describes how to send a direct message:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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