After Finalize the video, I want to make the tweet this with upload video
i used following code for make tweet with uploaded video
string url = “https://api.twitter.com/1.1/statuses/update.json”;
string response = string.Empty;
string quary = “posted from stratus”;
MultipartFormDataContent form = new MultipartFormDataContent();
form.Add(new StringContent(Media_id), "media_ids");
form.Add(new StringContent(quary, Encoding.Unicode), "status");
HttpClient _client1 = new HttpClient();
string header = DriveUtilities.GenerateSignatureforTwitterVideo(url, "", Twitter_AccessToken, Twitter_AccessTokenSecret);
_client1.DefaultRequestHeaders.Add("Authorization", header);
var _Response = await _client1.PostAsync(new Uri(url), form);
its posting only status not the video while i successfully finalize the video during the upload