<?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: Is there a way to get multiple image thumbnails in batches using Dropbox API?  in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26666#M773</link>
    <description>&lt;P&gt;If you are passing on requests, it would be nice to get back thumbnail urls in response to a metadata request, and to have them accessible without authentication, much like a media request.  That would save at least one transaction per image, and speed up the other by allowing developers to put the thumbnail url directly in an &lt;CODE&gt;&amp;lt;img&amp;gt;&lt;/CODE&gt; tag rather than using a base64 or blob url.  Also, then the browser would cache, rather than the application.&lt;/P&gt;

&lt;P&gt;Maybe something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{
    "size": "225.4KB",
    "rev": "35e97029684fe",
    "thumb_exists": true,
    "thumb_url": "https://dl.dropboxusercontent.com/1/view/thumb/xxxxxx/mypic.jpg"
    "thumb_expires":  "Tue, 19 Jul 2011 23:55:38 +0000",
    "bytes": 230783,
    "modified": "Tue, 19 Jul 2011 19:55:38 +0000",
    "client_mtime": "Mon, 18 Jul 2011 16:04:35 +0000",
    "path": "/mypic.jpg",
    "is_dir": false,
    "icon": "page_white_acrobat",
    "root": "dropbox",
    "mime_type": "image/jpeg",
    "revision": 220823
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;-A-&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jun 2015 06:50:55 GMT</pubDate>
    <dc:creator>Aaron F.16</dc:creator>
    <dc:date>2015-06-03T06:50:55Z</dc:date>
    <item>
      <title>Is there a way to get multiple image thumbnails in batches using Dropbox API?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26664#M771</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Is there a way to get image thumbnails in batches using the dropbox API? For example, this blog post describes a way how it was achieved by the official dropbox app. But it seems that this API is not available to third party developers. &lt;/P&gt;

&lt;P&gt;I looked through the Android SDK documentation also. There seems to be no method which accepts an array of urls to provide multiple thumbnails in one call. Am I missing something? &lt;/P&gt;

&lt;P&gt;Any help in this matter will be greatly appreciated, as downloading image thumbnails in batches will greatly improve the user experience for the third party apps. &lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Pritam.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:44:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26664#M771</guid>
      <dc:creator>Pritam B.</dc:creator>
      <dc:date>2019-05-29T09:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to get multiple image thumbnails in batches using Dropbox API?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26665#M772</link>
      <description>&lt;P&gt;The Dropbox API doesn't currently offer a way to get thumbnails in batches like this, but I'll be sure to pass this along as a feature request.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2015 22:48:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26665#M772</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-03-10T22:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to get multiple image thumbnails in batches using Dropbox API?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26666#M773</link>
      <description>&lt;P&gt;If you are passing on requests, it would be nice to get back thumbnail urls in response to a metadata request, and to have them accessible without authentication, much like a media request.  That would save at least one transaction per image, and speed up the other by allowing developers to put the thumbnail url directly in an &lt;CODE&gt;&amp;lt;img&amp;gt;&lt;/CODE&gt; tag rather than using a base64 or blob url.  Also, then the browser would cache, rather than the application.&lt;/P&gt;

&lt;P&gt;Maybe something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;{
    "size": "225.4KB",
    "rev": "35e97029684fe",
    "thumb_exists": true,
    "thumb_url": "https://dl.dropboxusercontent.com/1/view/thumb/xxxxxx/mypic.jpg"
    "thumb_expires":  "Tue, 19 Jul 2011 23:55:38 +0000",
    "bytes": 230783,
    "modified": "Tue, 19 Jul 2011 19:55:38 +0000",
    "client_mtime": "Mon, 18 Jul 2011 16:04:35 +0000",
    "path": "/mypic.jpg",
    "is_dir": false,
    "icon": "page_white_acrobat",
    "root": "dropbox",
    "mime_type": "image/jpeg",
    "revision": 220823
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;-A-&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2015 06:50:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26666#M773</guid>
      <dc:creator>Aaron F.16</dc:creator>
      <dc:date>2015-06-03T06:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to get multiple image thumbnails in batches using Dropbox API?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26667#M774</link>
      <description>&lt;P&gt;Thanks for the request, I'll pass that along too!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2015 07:00:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/26667#M774</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2015-06-03T07:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to get multiple image thumbnails in batches using Dropbox API?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/251601#M14479</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.&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Nov 2017 19:08:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Is-there-a-way-to-get-multiple-image-thumbnails-in-batches-using/m-p/251601#M14479</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-11-07T19:08:14Z</dc:date>
    </item>
  </channel>
</rss>

