to post updates to twitter i am using the following code.
OAuthTokens tokens = new OAuthTokens();
tokens.AccessToken = // My access token //;
tokens.AccessTokenSecret = // My access token secret //;
tokens.ConsumerKey = // My consumer key //;
tokens.ConsumerSecret = // My consumer secret//;
TwitterResponse<TwitterStatus> tweetResponse = TwitterStatus.Update(tokens, "Hello, #Twitterizer");
Can any one help me with code to post status updates to twitter
And you also need to register yours app as read/write (default is readonly) ,
Or you would always receive the 401 error code.
Good luck.
UPDATE:
Ok , This is my code.
First is the Utility class , I think you could found a lot of such method in the internet.
This is console app , u can use it to get token by pincode
Then you can use yours token and token secret for next .