<?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: Get thumbnail method: Is there a difference in the response generated between v1 and v2 of the API in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162073#M5618</link>
    <description>&lt;P&gt;No, both the API v1 and API v2 thumbnail endpoints just return the raw content directly. I just tried this against the HTTP endpoints directly and I got the same exact response body back for both.&lt;/P&gt;</description>
    <pubDate>Thu, 17 Mar 2016 04:42:59 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2016-03-17T04:42:59Z</dc:date>
    <item>
      <title>Get thumbnail method: Is there a difference in the response generated between v1 and v2 of the API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162072#M5617</link>
      <description>&lt;P&gt;I have been using Dropbox v1 API to access user images. I use them in my Parse.com cloud code (very similar to node.js). Code below for v1:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;}).then(function(dropboxToken){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; return Parse.Cloud.httpRequest(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; method: 'GET',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: '&lt;A href="https://content.dropboxapi.com/1/thumbnails/auto" rel="nofollow noreferrer" target="_blank"&gt;https://content.dropboxapi.com/1/thumbnails/auto&lt;/A&gt;' + &amp;lt;path&amp;gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; headers: {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Authorization': 'Bearer ' + dropboxToken.get("accessToken")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;});&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}).then(function(thumbnail){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var imageBuffer = thumbnail.buffer;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var image&amp;nbsp;= imageBuffer.toString('base64');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;response.success(image);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}, function(error){&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;response.error(error.message);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;});&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The above code worked fine. But now I am updating my cloud code to v2 of Dropbox API. Code below:&lt;/P&gt;
&lt;P&gt;}).then(function(oauthToken){&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;return Parse.Cloud.httpRequest({&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; method: 'POST',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: '&lt;A href="https://content.dropboxapi.com/2/files/get_thumbnail" rel="nofollow noreferrer" target="_blank"&gt;https://content.dropboxapi.com/2/files/get_thumbnail&lt;/A&gt;',&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; headers: {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'Authorization': 'Bearer ' + oauthToken.get("accessToken"),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;'Dropbox-API-Arg': JSON.stringify({"path": dropboxFileId})&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;});&lt;/P&gt;
&lt;P&gt;}).then(function(imageResponse){&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var imageBuffer = thumbnail.buffer;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;var image&amp;nbsp;= imageBuffer.toString('base64');&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;response.success(image);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }, function(error){&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;response.error(error.text);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;/P&gt;
&lt;P&gt;});&lt;/P&gt;
&lt;P&gt;For some reason, the v2 code does not work. I do get a response from the server which I have provided in the below Stackoverflow link:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/36027091/convert-raw-image-data-to-base64-encoded-string" target="_blank" rel="nofollow noreferrer"&gt;http://stackoverflow.com/questions/36027091/convert-raw-image-data-to-base64-encoded-string&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;But I somehow do not get the right base64 string. Is there a difference in the responses provided by v1 to v2 of the API? If yes, how do I resolve this issue.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:34:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162072#M5617</guid>
      <dc:creator>Santhosh T.</dc:creator>
      <dc:date>2019-05-29T09:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Get thumbnail method: Is there a difference in the response generated between v1 and v2 of the API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162073#M5618</link>
      <description>&lt;P&gt;No, both the API v1 and API v2 thumbnail endpoints just return the raw content directly. I just tried this against the HTTP endpoints directly and I got the same exact response body back for both.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 04:42:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162073#M5618</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-03-17T04:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Get thumbnail method: Is there a difference in the response generated between v1 and v2 of the API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162074#M5619</link>
      <description>&lt;P class="p1"&gt;Thanks Gregory, but I get two different responses:&lt;/P&gt;
&lt;P class="p1"&gt;Response with v2:&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;{ status: 200,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;headers: &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;{ server: 'nginx',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;date: 'Wed, 16 Mar 2016 21:39:26 GMT',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'content-type':&lt;STRONG&gt; 'application/octet-stream',&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'content-length': '1731',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;connection: 'close',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'accept-ranges': 'bytes',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;pragma: 'no-cache',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'cache-control': 'no-cache',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'original-content-length': '1731',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'dropbox-api-result': '{"name": "Logo.jpg", "path_lower": "/logo.jpg", "path_display": "/Logo.jpg", "id": "id:HIY5vU6bHgAAAAAAAAAAAQ", "client_modified": "2015-10-20T03:11:50Z", "server_modified": "2016-02-13T06:08:14Z", "rev": "2a143d0c726", "size": 17150, "media_info": {".tag": "metadata", "metadata": {".tag": "photo", "dimensions": {"height": 157, "width": 225}, "time_taken": "2015-10-20T14:10:53Z"}}}',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'x-server-response-time': '195',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'x-dropbox-request-id': '702fa93503a7e87f5d1f46f63e146a21',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'x-robots-tag': 'noindex, nofollow, noimageindex' },&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;buffer: &amp;lt;Buffer ef bf bd ef bf bd ef bf bd ef bf bd 00 10 4a 46 49 46 00 01 01 00 00 01 00 01 00 00 ef bf bd ef bf bd 00 43 00 06 04 05 06 05 04 06 06 05 06 07 07 06 ... &amp;gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;cookies: undefined,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;text: '\u0000\u0010JFIF\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0001\u0000\u0000\u0000C\u0000\u0006\u0004\u0005\u0006\u0005\u0004\u0006\u0006\u0005\u0006\u0007\u0007\u0006\b\n\u0010\n\n\t\t\n\u0014\u000e\u000f\f\u0010\u0017\u0014\u0018\u0018\u0017\u0014\u0016\u0016\u001a\u001d%\u001f\u001a\u001b#\u001c\u0016\u0016 , #&amp;amp;\')*)\u0019\u001f-0-(0%()(\u0000C\u0001\u0007\u0007\u0007\n\b\n\u0013\n\n\u0013(\u001a\u0016\u001a((((((((((((((((((((((((((((((((((((((((((((((((((\u0000\u0011\b\u0000-\u0000@\u0003\u0001"\u0000\u0002\u0011\u0001\u0003\u0011\u0001\u0000\u001f\u0000\u0000\u0001\u0005\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\u0000\u0010\u0000\u0002\u0001\u0003\u0003\u0002\u0004\u0003\u0005\u0005\u0004\u0004\u0000\u0000\u0001}\u0001\u0002\u0003\u0000\u0004\u0011\u0005\u0012!1A\u0006\u0013Qa\u0007"q\u00142\b#B\u0015R$3br\t\n\u0016\u0017\u0018\u0019\u001a%&amp;amp;\'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\u0000\u001f\u0001\u0000\u0003\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0001\u0000\u0000\u0000\u0000\u0000\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007\b\t\n\u000b\u0000\u0011\u0000\u0002\u0001\u0002\u0004\u0004\u0003\u0004\u0007\u0005\u0004\u0004\u0000\u0001\u0002w\u0000\u0001\u0002\u0003\u0011\u0004\u0005!1\u0006\u0012AQ\u0007aq\u0013"2\b\u0014B\t#3R\u0015br\n\u0016$4%\u0017\u0018\u0019\u001a&amp;amp;\'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz\u0000\f\u0003\u0001\u0000\u0002\u0011\u0003\u0011\u0000?\u0000*\u001b{fn\'&amp;amp;øR\\8\u0007@\u0013W|DŮ?d}ޕ\u0011`\u00032Xee\u000f8 8A㟈W\u001a$\u0016\u000f\u000fx\u000b\u001a72\r@#\u0019PU,v\u0011hH\u001b\u000e\u0002\\\u0005\u0003o\u0000~"\\%񔖇\u0002O%\u0013fs&amp;lt;\u0001TX=\u000f$G82vy\u0003o\u0004+m&amp;gt;\u001cy\u001cm\u000616-\u0018\'cs7\u0019ۏl{P&amp;lt;!Xj\u001e\u0013^\u0015It\u0003f\'~I\u001d:\u0010(\u0003+c^\nӮ|Sm5K\b\u000e@;GL+\u0002\u00174\u0017/\rx\u000eY\\\u0013K,yC\u000fdu\fz\u0005@1Ӯx\u0000\u0006.\u0019;$lI¶w=GN6h\u0002C4u/\bLĖHXJ\\ʹ\u001f19\'WZ\'؛:Ֆ`pýؖ!W\'$\u0002\u0007}\u0005x╶rF\'\u001a\u000bWM[.X\u00002U3ڽÝWZEŅڮdR\u0019W3Pmb\f\u0000(\u00033}zSk^]ݸ\u000339z96-&amp;lt;SivJ-\u001eh̙NNpIG\u0019O\u001e/-\u0001m\u000fb6V&amp;gt;cg \u000e\u0015\u001f\u000e2\u0010}]Lc\u0011[\u0000\u0002x\u0004\u00015X۵qvcS2Fە_\u001f0\u0004\u0000皳E\u0014\u0001R8/\'\u0010H~э?|e .\u0006B\u001e3V?\u001cW\u0000eS&amp;amp;݋\u0012p0Y\u0004jqw\u0001"8\r؂\u0000[2\u0014W\'\u0003Zj&amp;amp;o0ā3?\u0003@\u001c=\u0004-=joo5($2\tH;v\u0000NpFy8i&amp;gt;:/M\u001e-\u0012g\u001f̌qt\u0007}3ZMte!\\\u000b:t:h\u001e7?Ƞ\u000e"ǚϑqqhmZ\u001c\u0019\u0002q\u001e;Xu\u0014V6.&amp;amp;v";y\u0000\u00024#mǌ\u0007v#\u001b2\teIn\u0014sF}SV;\u0004\b[c,u\u0018@\u001c? n.4-b\u001bV%Df\nr\u0000n\u0019?0\u001di6Q\u000f\u0002lc\u001b{ctx\u0012ͽ21偼`{Trn6\u000f.X\u0001?*\u0000' }&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;and for v1, I get:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;{"uuid":"99952763-ebbc-444d-0860-50ab433959cf","status":200,"headers":{"Connection":"keep-alive","Content-Length":"1731","Content-Type":&lt;STRONG&gt;"image/jpeg"&lt;/STRONG&gt;,"Date":"Wed, 16 Mar 2016 21:10:51 GMT","Server":"nginx","X-Robots-Tag":"noindex, nofollow, noimageindex","X-Server-Response-Time":"206","cache-control":"no-cache","pragma":"no-cache","x-dropbox-metadata":"{\"rev\": \"5737ee9e71\", \"thumb_exists\": true, \"photo_info\": {\"lat_long\": null, \"time_taken\": \"Tue, 20 Oct 2015 14:10:53 +0000\", \"image_dimensions\": [225, 157]}, \"path\": \"/TestParse/Logo.jpg\", \"is_dir\": false, \"client_mtime\": \"Tue, 20 Oct 2015 03:11:50 +0000\", \"icon\": \"page_white_picture\", \"read_only\": false, \"modifier\": null, \"bytes\": 17150, \"modified\": \"Tue, 20 Oct 2015 03:12:07 +0000\", \"size\": \"16.7 KB\", \"root\": \"dropbox\", \"mime_type\": \"image/jpeg\", \"revision\": 87}","x-dropbox-request-id":"db555834aa280849a9ff7ce66bcfcd31","x-dropbox-thumbcachehit":"1"},"text":"\u0000\... (truncated)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;"buffer":{"0":255,"1":216,"10":0,"100":19,"101":10,"102":10,"103":19,"104":40,"105":26,"106":22,"107":26,"108":40,"109":40,"11":1,"110":40,"111":40,"112":40,"113":40,"114":40,"115":40,"116":40,"117":40,"118":40,"119":40,"12":1,"120":40,"121":40,"122":40,"123":40,"124":40,"125":40,"126":40,"127":40,"128":40,"129":40,"13":0,"130":40,"131":40,"132":40,"133":40,"134":40,"135":40,"136":40,"137":40,"138":40,"139":40,"14":0,"140":40,"141":40,"142":40,"143":40,"144":40,"145":40,"146":40,"147":40,"14... (truncated)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;As noted before, I used the buffer values to convert my responses to base64. Now since the buffer values are different, I am struggling to get the right base64 string. Can you please let me know how I would get the base64 string from the buffer values which are now in hexadecimal?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;Or is it possible to get base64 from the text body? If yes, how?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;Many Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 04:56:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162074#M5619</guid>
      <dc:creator>Santhosh T.</dc:creator>
      <dc:date>2016-03-17T04:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Get thumbnail method: Is there a difference in the response generated between v1 and v2 of the API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162075#M5620</link>
      <description>&lt;P&gt;The Content-Type header is reporting differently, but the bodies themselves are the same, so it sounds like the issue may be with the library or processing you're doing. I can't offer much help there as we didn't write that though. Maybe the library you're using is changing&amp;nbsp;the response it gives you different based on the Content-Type? In any case, the API doesn't offer an option for changing the format returned by the API call itself.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 04:59:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162075#M5620</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-03-17T04:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: Get thumbnail method: Is there a difference in the response generated between v1 and v2 of the API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162076#M5621</link>
      <description>&lt;P&gt;Ok Thanks for that. I will take it from here.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2016 06:38:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Get-thumbnail-method-Is-there-a-difference-in-the-response/m-p/162076#M5621</guid>
      <dc:creator>Santhosh T.</dc:creator>
      <dc:date>2016-03-17T06:38:55Z</dc:date>
    </item>
  </channel>
</rss>

