You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
jakealake
5 years agoExplorer | Level 4
Batch Dropbox Thumbnails .net SDK
Hello -
Echoing some of the past sentiment here about the .net SDK samples being thin. I've spent a day or two looking for a good example on how to prepare the parameters and build the call to th...
- 5 years ago
You can make a list of ThumbnailArg and use it to call GetThumbnailBatchAsync like this:
var paths = new String[] { "/Photos/1.jpg", "/Photos/2.jpg"}; var thumbnailsArgs = new List<ThumbnailArg> { }; foreach (var path in paths) { thumbnailsArgs.Add(new ThumbnailArg(path: path, format: ThumbnailFormat.Png.Instance)); } GetThumbnailBatchResult getThumbnailBatchResult = await this.client.Files.GetThumbnailBatchAsync(thumbnailsArgs);
Greg-DB
5 years agoDropbox Staff
You can make a list of ThumbnailArg and use it to call GetThumbnailBatchAsync like this:
var paths = new String[] { "/Photos/1.jpg", "/Photos/2.jpg"}; var thumbnailsArgs = new List<ThumbnailArg> { }; foreach (var path in paths) { thumbnailsArgs.Add(new ThumbnailArg(path: path, format: ThumbnailFormat.Png.Instance)); } GetThumbnailBatchResult getThumbnailBatchResult = await this.client.Files.GetThumbnailBatchAsync(thumbnailsArgs);
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,913 PostsLatest Activity: 8 hours agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!