Click here to Skip to main content
15,888,286 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How to update status of a specific user on twitter using LinqToTwitter
I tried this :

SQL
twitterCtx = new TwitterContext(auth);

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


the probleme is that update status of all my followers

Thanks,
Posted

1 solution

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

Where in the code above are you updating for 'specific user'?
Currently, you are just updating for all only.


Read about how it can be used: LinqToTwitter Documentation[^]
 
Share this answer
 
Comments
saisne 16-Jun-12 7:10am    
@Sandeep Mewara how can update for a specific user?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900