这里有人尝试使用 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页面,但该示例仅说明了如何发布简单的文本消息。