The Twitter API recently deprecated the statuses/update_with_media endpoint, which LINQ to Twitter abstracts via a TweetWithMedia method. It’s replaced with a new endpoint, media/upload, and a new parameter to statuses/update, media_ids. The benefit of the new API change is that you can now tweet multiple images. Naturally, LINQ to Twitter supports this capability. However, what’s really interesting is that you can upload multiple images at the same time with Task.WhenAll. This post explains how ......
The new version of LINQ to Twitter v3.0.5 adds support for uploading multiple images in a tweet. There’s also several bug fixes, including fixing a serious bug that affected VB developers. You can download the latest on CodePlex or via NuGet. @JoeMayo ......