4

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ページを見てみましたが、サンプルは簡単なテキスト メッセージを投稿する方法を示しているだけです。

4

2 に答える 2

5

このプル リクエストの最初の部分を参照してください: TweetSharp Github

SendTweet の代わりに呼び出すSendTweetWithMediaことが該当する場合があります。

また、ディクショナリのキーは、画像パスではないようです (とにかくストリームを指定しています) 例では、「テスト」が渡されます。

--HTH 楽しんでください

于 2013-03-17T19:27:24.397 に答える
1

service.SendTweet()タイプのパラメーターを受け入れます。SendTweetOptions画像を投稿したい場合は、使用できます

service.SendTweetWithMedia(new SendTweetWithMediaOptions 
{ 
     Status = "message", 
     Images = dictionary 
}
);
于 2014-05-28T17:08:18.230 に答える