I have some code:
internal TwitterResponse<TwitterStatus> UpdateTweet(string Tweet)
{
TwitterResponse<TwitterStatus> tweetResponse = null;
OAuthTokens tokens = new OAuthTokens();
tokens.AccessToken = accessToken;
tokens.AccessTokenSecret = accessTokenSecret;
tokens.ConsumerKey = consumerKey;
tokens.ConsumerSecret = consumerSecret;
tweetResponse = TwitterStatus.Update(tokens, Tweet);
return tweetResponse;
}
This code send tweet to authenticated user but I need send to assigned user.