0

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,

Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928
Victor
  • 235
  • 1
  • 5
  • 14

1 Answers1

0

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);
Jesse
  • 8,223
  • 6
  • 49
  • 81
Fox32
  • 13,126
  • 9
  • 50
  • 71
  • not a direct message, Updating Status of twitter user. this methode twitterCtx.UpdateStatus("Welcom " + DateTime.Now.ToString()) update satatus of all my follower, i want to specify which user to update his status – Victor Jun 16 '12 at 10:23
  • Twitter don't has a features to add a status update to another users account, you can only add one in your own account. Other options are: Write @accountname or a direct message. – Fox32 Jun 16 '12 at 10:28
  • twitterCtx.UpdateStatus("Welcome" + DateTime.Now.ToString()) send a tweet to a twitter user, all follower of this user can show this tweet, – Victor Jun 16 '12 at 10:41
  • A direct message is not visible to other users, but isn't what you are looking for? – Fox32 Jun 16 '12 at 21:20
  • I do not want sending a direct message I will rather send a tweet to a Twitter user who will be viewed by all his followers, thanks – Victor Jun 16 '12 at 22:01