0
我正在使用TweetInvi在Twitter上發佈視頻。用Tweetinvi上傳視頻
TwitterCredentials.SetCredentials(token.Token,token.TokenSecret,ConfigurationManager.AppSettings["ConsumerKey"], ConfigurationManager. AppSettings["ConsumerSecret"]);
var filePath = string.Format("{0}content\\participant\\video\\{1}.{2}", Request.PhysicalApplicationPath, p.video, "mp4");
byte[] file1 =System.IO.File.ReadAllBytes(filePath);
var tweet = Tweetinvi.Tweet.CreateTweet(message);
tweet.AddMedia(file1, "video");
var success = tweet.Publish();
Tweet成功發佈。但視頻文件丟失。 我已使用 tweetinvi twwet with media的代碼
在此先感謝。
我用tinytwitter https://github.com/SnapStreamJason/TinyTwitter。視頻uplaod工作正常。 –