<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Thumbnails in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/249635#M14351</link>
    <description>The Dropbox API now offers the ability to get thumbnails in batches:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you're using an official SDK, there will also be a corresponding method for this endpoint.</description>
    <pubDate>Thu, 26 Oct 2017 18:59:14 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2017-10-26T18:59:14Z</dc:date>
    <item>
      <title>Thumbnails</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/205996#M9988</link>
      <description>&lt;P&gt;is there a way to GET tumbnails in batch now? getting the thumbnails one by one is really to slow to be usefull.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:26:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/205996#M9988</guid>
      <dc:creator>Daemonzoid</dc:creator>
      <dc:date>2019-05-29T09:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Thumbnails</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/206071#M9996</link>
      <description>No, the Dropbox API doesn't currently offer a batch thumbnail endpoint, but I'll be sure to pass this along as a feature request.</description>
      <pubDate>Thu, 09 Feb 2017 18:15:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/206071#M9996</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-02-09T18:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Thumbnails</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/249635#M14351</link>
      <description>The Dropbox API now offers the ability to get thumbnails in batches:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you're using an official SDK, there will also be a corresponding method for this endpoint.</description>
      <pubDate>Thu, 26 Oct 2017 18:59:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/249635#M14351</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-26T18:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Thumbnails</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/267784#M15752</link>
      <description>&lt;P&gt;Does anyone have an example of working code, preferably in Python?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The method is called “files_get_thumbnail_batch”, but I am at a loss how to construct the argument. The docs call it “entries” and explain that this is “a list of files”, but what does that mean? What object type is meant, and how do I construct it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2018 15:08:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/267784#M15752</guid>
      <dc:creator>Jeroen B.1</dc:creator>
      <dc:date>2018-03-07T15:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Thumbnails</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/267806#M15757</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/76659"&gt;@Jeroen B.1&lt;/a&gt;&amp;nbsp;Apologies, the Python documentation doesn't properly include the type for parameters that take lists like that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.dropbox.Dropbox.files_get_thumbnail_batch" target="_self"&gt;files_get_thumbnail_batch&lt;/A&gt;&amp;nbsp;entries parameter should be a list of &lt;A href="https://dropbox-sdk-python.readthedocs.io/en/latest/moduledoc.html#dropbox.files.ThumbnailArg" target="_self"&gt;ThumbnailArg&lt;/A&gt;. That would look like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;entries = [
    dropbox.files.ThumbnailArg(path="/test.jpg", format=dropbox.files.ThumbnailFormat.png, size=dropbox.files.ThumbnailSize.w128h128),
    dropbox.files.ThumbnailArg(path="/test.png", format=dropbox.files.ThumbnailFormat.jpeg)
]

print(dbx.files_get_thumbnail_batch(entries=entries))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2018 16:45:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/267806#M15757</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-03-07T16:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Thumbnails</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/267811#M15759</link>
      <description>&lt;P&gt;Thanks, that should do it!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Mar 2018 17:31:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Thumbnails/m-p/267811#M15759</guid>
      <dc:creator>Jeroen B.1</dc:creator>
      <dc:date>2018-03-07T17:31:24Z</dc:date>
    </item>
  </channel>
</rss>

