TweetSharp を使用して画像付きのツイートを試みた人はいますか?
私は次のことを試しました:
Dictionary<string, Stream> imageDict = new Dictionary<string, Stream>();
imageDict.Add(imagePath, imageStream);
// I'm getting an error with the line below.
// It's saying I have some invalid arguments. :(
status = service.SendTweet(new SendTweetWithMediaOptions() { Status = readerMsg.Message, Images = imageDict });
しかし、最後の行で無効な引数エラーが表示されますが、理由はありません。
GitHubページを見てみましたが、サンプルは簡単なテキスト メッセージを投稿する方法を示しているだけです。