<?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: &amp;quot;Dropbox-API-Arg&amp;quot;: could not decode input as JSON in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/324403#M19068</link>
    <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/893647"&gt;@tridejur&lt;/a&gt;&lt;SPAN&gt;&amp;nbsp;Y&lt;/SPAN&gt;&lt;SPAN&gt;ou already have an API support ticket open for this that we've been replying to. Please do not post in multiple places for the same issue. We'll continue following up with you on your ticket. Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jan 2019 17:30:22 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2019-01-21T17:30:22Z</dc:date>
    <item>
      <title>"Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288054#M17621</link>
      <description>&lt;P&gt;Error in call to API function "files/get_thumbnail": HTTP header "Dropbox-API-Arg": could not decode input as JSON&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;here is code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE&gt;var folder_flag = 0;
axios({
        method: 'POST',
        url: 'https://api.dropboxapi.com/2/files/list_folder',
        headers: {
            Authorization: 'Beareraccess_token',
            'Content-Type': 'application/json'
        },
        data: {
            path: "",
            include_media_info: true
        }
    })
    .then(function(response) {
            console.log(response);
            for (var i = 0; i &amp;lt; response.data.entries.length; i++) {
                if (response.data.entries[i][".tag"] == "folder") {
                    folders.push(response.data.entries[i].name);
                    folder_flag = 1;
                } else if (response.data.entries[i][".tag"] == "file") {
                    axios({
                            method: 'POST',
                            url: 'https://content.dropboxapi.com/2/files/get_thumbnail',
                            headers: {
                                Authorization: 'Bearer access_token',
                                'Content-Type': 'application/json',
                                'Dropbox-API-Arg': response.data.entries[i].id
                            }
                        })
                        .then(function(response) {
                            console.log(response);
                            file_flag = 1;
                        });
                } else {
                    console.log('No File or Folder availabel right now');
                }&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 29 May 2019 09:11:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288054#M17621</guid>
      <dc:creator>Umair-afzal</dc:creator>
      <dc:date>2019-05-29T09:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288108#M17624</link>
      <description>&lt;P&gt;[Cross-linking for reference:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/51614378/error-in-call-to-api-function-files-get-thumbnail-http-header-dropbox-api-ar" target="_blank"&gt;https://stackoverflow.com/questions/51614378/error-in-call-to-api-function-files-get-thumbnail-http-header-dropbox-api-ar&lt;/A&gt; ]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This error is indicating that the value you're sending in the "Dropbox-API-Arg" header isn't valid JSON. In your code, you're setting "Dropbox-API-Arg" to "response.data.entries[i].id", which isn't JSON. It's just a string with the ID for a file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can see an example of what this is supposed to be in &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail" target="_blank"&gt;the documentation for /2/files/get_thumbnail&lt;/A&gt;. You probably mean to do something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;'Dropbox-API-Arg': JSON.stringify({"path": response.data.entries[i].id})&lt;/PRE&gt;</description>
      <pubDate>Tue, 31 Jul 2018 14:49:45 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288108#M17624</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-07-31T14:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288277#M17636</link>
      <description>I got this response &lt;BR /&gt;&lt;BR /&gt;ÿØÿà&amp;#16;JFIF&amp;#1;&amp;#1;&amp;#1;&amp;#1;ÿÛC&amp;#6;&amp;#4;&amp;#5;&amp;#6;&amp;#5;&amp;#4;&amp;#6;&amp;#6;&amp;#5;&amp;#6;&amp;#7;&amp;#7;&amp;#6;&amp;#8;&lt;BR /&gt;&amp;#16;&lt;BR /&gt;&lt;BR /&gt;		&lt;BR /&gt;&amp;#20;&amp;#14;&amp;#15;&amp;#12;&amp;#16;&amp;#23;&amp;#20;&amp;#24;&amp;#24;&amp;#23;&amp;#20;&amp;#22;&amp;#22;&amp;#26;&amp;#29;%&amp;#31;&amp;#26;&amp;#27;#&amp;#28;&amp;#22;&amp;#22; , #&amp;amp;')*)&amp;#25;&amp;#31;-0-(0%()(ÿÛC&amp;#1;&amp;#7;&amp;#7;&amp;#7;&lt;BR /&gt;&amp;#8;&lt;BR /&gt;&amp;#19;&lt;BR /&gt;&lt;BR /&gt;&amp;#19;(&amp;#26;&amp;#22;&amp;#26;((((((((((((((((((((((((((((((((((((((((((((((((((ÿÀ&amp;#17;&amp;#8;$@&amp;#3;&amp;#1;"&amp;#2;&amp;#17;&amp;#1;&amp;#3;&amp;#17;&amp;#1;ÿÄ&amp;#31;&amp;#1;&amp;#5;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#2;&amp;#3;&amp;#4;&amp;#5;&amp;#6;&amp;#7;&amp;#8;	&lt;BR /&gt;&amp;#11;ÿÄµ&amp;#16;&amp;#2;&amp;#1;&amp;#3;&amp;#3;&amp;#2;&amp;#4;&amp;#3;&amp;#5;&amp;#5;&amp;#4;&amp;#4;&amp;#1;}&amp;#1;&amp;#2;&amp;#3;&amp;#4;&amp;#17;&amp;#5;&amp;#18;!1A&amp;#6;&amp;#19;Qa&amp;#7;"q&amp;#20;2&amp;#129;&amp;#145;¡&amp;#8;#B±Á&amp;#21;RÑð$3br&amp;#130;	&lt;BR /&gt;&amp;#22;&amp;#23;&amp;#24;&amp;#25;&amp;#26;%&amp;amp;'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz&amp;#131;&amp;#132;&amp;#133;&amp;#134;&amp;#135;&amp;#136;&amp;#137;&amp;#138;&amp;#146;&amp;#147;&amp;#148;&amp;#149;&amp;#150;&amp;#151;&amp;#152;&amp;#153;&amp;#154;¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖ×ØÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ&amp;#31;&amp;#1;&amp;#3;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#1;&amp;#2;&amp;#3;&amp;#4;&amp;#5;&amp;#6;&amp;#7;&amp;#8;	&lt;BR /&gt;&amp;#11;ÿÄµ&amp;#17;&amp;#2;&amp;#1;&amp;#2;&amp;#4;&amp;#4;&amp;#3;&amp;#4;&amp;#7;&amp;#5;&amp;#4;&amp;#4;&amp;#1;&amp;#2;w&amp;#1;&amp;#2;&amp;#3;&amp;#17;&amp;#4;&amp;#5;!1&amp;#6;&amp;#18;AQ&amp;#7;aq&amp;#19;"2&amp;#129;&amp;#8;&amp;#20;B&amp;#145;¡±Á	#3Rð&amp;#21;brÑ&lt;BR /&gt;&amp;#22;$4á%ñ&amp;#23;&amp;#24;&amp;#25;&amp;#26;&amp;amp;'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz&amp;#130;&amp;#131;&amp;#132;&amp;#133;&amp;#134;&amp;#135;&amp;#136;&amp;#137;&amp;#138;&amp;#146;&amp;#147;&amp;#148;&amp;#149;&amp;#150;&amp;#151;&amp;#152;&amp;#153;&amp;#154;¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖ×ØÙÚâãäåæçèéêòóôõö÷øùúÿÚ&amp;#12;&amp;#3;&amp;#1;&amp;#2;&amp;#17;&amp;#3;&amp;#17;?è¼!£ÜM¤ÝËeáKMR6*"&amp;#154;I&amp;#149;|ÆØ¹@»È\rsÜ×¤é&amp;#30;&amp;#7;Òn4ø$Ö¼9a&amp;#21;ëG&amp;#153;c&amp;#140;îXÉþ&amp;#28;÷ú×&amp;#137;Û|DÖtëO±èò%¨&amp;#131;/2Én­¸°&amp;#27;HÜ20«Ï&amp;#21;ïZMÛ]i6ÓÞ\Ý4³ÛFÒ&amp;#148;0¨%&amp;#144;&amp;#19;&amp;#128;zu®ªô&amp;#156;`¥eg÷&amp;#155;TæiI¤®Cÿ&amp;#8;&amp;#31;&amp;#134;Cÿ&amp;#8;ý&amp;#151;Ì&amp;#2;¯C&amp;#156;ÿ:&amp;#144;|?ð¸p&amp;#6;&amp;#129;i¹W&amp;#24;ÛÛß&amp;#158;zUÛ&amp;#24;e·ØU§&amp;#150;Ä/&amp;#151;&amp;#20;&amp;#12;&amp;#139;¼w'p&amp;lt;&amp;#142;&amp;#15;æ*´~-ÓgÑµmZÐ5Ä:|s4Á&amp;#8;&amp;#12;Lk&amp;#150;@&amp;#15;FÇcÒ¸&amp;#156;ã&amp;#29;$õ0¾¶!&amp;#30;&amp;#3;ðÈØßØ&amp;#22;$&amp;#18;@!qÇo©éJ&amp;lt;&amp;#5;á&amp;#148;&amp;#24;ÿ&amp;#132;zÈmÆ~Pp?È®[VøÁ£Xh&amp;#145;_É¥ê&lt;BR /&gt;&amp;#11;m&amp;#1;T¦Fá&amp;#159;ïT:WÆ}&amp;#31;RðÖ±®G¦ê)m`V'GÙºBv&amp;#128;&amp;#23;æÇñ&amp;#14;¾&amp;#148;ù¢&amp;#139;å&amp;#149;®v1ø&amp;#23;ÃñÈ&amp;#141;&amp;#31;&amp;#135;­S&amp;#24;ù&amp;#151;&amp;#3;&amp;#31;ã&amp;#140;&lt;BR /&gt;óß&amp;#17;x&amp;#127;Zk«&amp;#155;H&amp;gt;&amp;#27;iwVÑJ|&amp;#155;&amp;#152;.ü¦&amp;#149;{&amp;#28;î&amp;#4;{&amp;#131;Þ¶ü&amp;#17;ñ&amp;#147;NñmÛ[Ùiú&amp;#132;&amp;#12;#gÌ¾YÎÕ'&amp;#28;&amp;#19;Ï&amp;#21;&amp;#143;®ü}Ó4­j]*}+U[&amp;#152;§ò&amp;#28;&amp;#129;&amp;#22;7tþ÷&amp;#24;5&amp;#18;q}MðóöMóAKÖÿ£G&amp;#129;è×&amp;#147;ÞE}-ÜÒM/îÓs&amp;#156;&amp;#156;&amp;#5; &amp;#15;&amp;nbsp;&amp;#21;õ÷&amp;#134;`&lt;BR /&gt;¡é%Ë&amp;#132;6&amp;#144;&amp;#147;·?óÍkã¯&lt;BR /&gt;&amp;#127;Ç¥ÿûÉü&amp;#141;}¡áx&amp;#25;ü7¤0)&amp;#143;±Ã×v&amp;#127;Õ­{&amp;#24;´&amp;#149;&amp;#8;%Ý&amp;#154;ã&amp;#18;NË»(|Hñ%ß&amp;#134;|4&amp;#154;&amp;#150;&amp;#145;§­ìñÌ&amp;#145;&amp;#8;¤b&amp;#139;´&amp;#131;&amp;#147;&amp;#159;lW&amp;#142;Zxø&amp;#127;Â?¨}§J¶&amp;#130;Mxº^¹&amp;#159;cªÈ¾Z²&amp;#147;&amp;#144;q&amp;#158;­&amp;#142;¼ã5è¿&amp;#30;&amp;#12;¶ÿ&amp;#14;æ11&amp;#12;×&amp;#17;«&amp;#24;×'&amp;#4;7\&amp;#158;{WÍE&amp;#146;O&amp;#11;ÛYê&amp;#16;­Áû&amp;#146;ã*ã&amp;nbsp;&amp;#7;w@wvÁ¯&amp;#14;§+&amp;#157;&amp;#153;Ì©Þ&amp;#28;Ö-ø&amp;#138;êêûÃ&amp;amp;;H &amp;#150;Õe&amp;#17;&amp;#137;&amp;#22;àevã&amp;#4;&amp;#143;O~&amp;#149;Îè~/&amp;#142;ßÀ:§&amp;#135;þÌU®î&amp;#132;æä¿&amp;#29;&amp;#23;	&amp;#140;&amp;#127;³&amp;#154;&amp;#147;Ã:Ý½µµÜ&amp;#22;&amp;#129;ìØ&amp;#6;&amp;#140;³Í&amp;#130;Iê&amp;#25;@&amp;#25;_ï)Ïozµqiý±$óEko&amp;#27;ÌÁÿqoò0&amp;#14;&amp;#20;&amp;#2;&amp;#6;vç&amp;#143;&amp;#127;z$ã{Krà¤Õã±±ð_Åºg&amp;#133;uè.µC#Z¨!&amp;#158;&amp;#4;ÞG&amp;#4;tÎ{×'âûÕÕüuy¨[&amp;#25;$&amp;#138;ïQ3£8Á*dÈÏ½UÖü7¯éöwº&amp;#148;z=ý¾&amp;#146;&amp;#140;¯%ÏÙÊD¬Øg&amp;#29;&amp;#152;â°lnåû}&amp;#152;Ü9&amp;#153;2?àB&amp;#133;&amp;#7;ò%M&amp;#29;&amp;#15;&amp;#137;u9ô&amp;#157;^k}4Go&amp;#4;±DÌ&amp;#138;&amp;#153;&amp;#25;Ø2yÏ^Mz=&amp;#135;ÅO&amp;#21;ZÚÃ&amp;#20;7¶áaTDÍ¤Dü&amp;nbsp;s·®&amp;#7;Z(­±5&amp;amp;ì®ìt¿y»&amp;#150;uO&amp;#28;kÞ1ÒÛO×¯&amp;#18;{Më.Å&amp;#133;&amp;#19;æSÇ {×?ª&amp;#25;,µ)l­å"&amp;#8;&amp;#24;ª&amp;#2;&amp;#136;OLäñ×&amp;#154;(®XjÛ~_¨OD&amp;#146;Û_ÐÁñ&amp;#140;ò&amp;#127;iÛ©ò&amp;#129;XØ&amp;#22;&amp;#142;&amp;#20;&amp;#140;¿ å¶&amp;#1;&amp;#147;îy®ÒÓN·&amp;#30;&amp;#26;&amp;#141;ñ&amp;amp;c&amp;#132;:âV^N3Ð&amp;#143;Z(«&amp;#155;|±3¦&amp;#149;äs0xóR]54Ãmfö8!¡&amp;#147;Ìu~Nr&amp;#11;&amp;#144;}j&amp;#135;&amp;#140;|5§é~ Ñ&amp;#30;Á&amp;#30;&amp;#21;º&amp;#153;KÆ&amp;#27;*¸#îç¥&amp;#20;Vµ&amp;gt;%èe&amp;#15;&amp;#133;&amp;#159;ÿÙ</description>
      <pubDate>Wed, 01 Aug 2018 07:53:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288277#M17636</guid>
      <dc:creator>Umair-afzal</dc:creator>
      <dc:date>2018-08-01T07:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288378#M17639</link>
      <description>That is the raw data for the thumbnail itself. Exactly what you do with that is up to you. For example, you may wish to save that somewhere, or display it to the user, etc.</description>
      <pubDate>Wed, 01 Aug 2018 16:18:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/288378#M17639</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-08-01T16:18:05Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/319358#M18873</link>
      <description>&lt;P&gt;JSONM stringify? .What the heck is that?. You cannot use that value in all languajes, please correct JSON decoding&lt;/P&gt;</description>
      <pubDate>Sat, 22 Dec 2018 00:08:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/319358#M18873</guid>
      <dc:creator>tridejur</dc:creator>
      <dc:date>2018-12-22T00:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/320256#M18891</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/893647"&gt;@tridejur&lt;/a&gt;&amp;nbsp;&lt;A href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify" target="_blank"&gt;JSON.stringify&lt;/A&gt; is a method&amp;nbsp;specific to JavaScript. This thread is about proper client-side handling of this API call in JavaScript, so this code is only relevant to JavaScript. Plese refer to the documentation for whatever language you're using for information on how to parse/write JSON.&lt;/P&gt;
&lt;P&gt;There wasn't an issue with the server-side JSON decoding discovered in this thread. If you believe you've&amp;nbsp;encountered an issue with the&amp;nbsp;the server-side JSON decoding, please &lt;A href="https://www.dropboxforum.com/t5/forums/postpage/board-id/101000014" target="_self"&gt;report the details in a new thread&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Dec 2018 19:38:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/320256#M18891</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-12-28T19:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/324058#M19053</link>
      <description>&lt;P&gt;It was ust a missundrstanding in your json compiler.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jan 2019 14:20:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/324058#M19053</guid>
      <dc:creator>tridejur</dc:creator>
      <dc:date>2019-01-19T14:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/324059#M19054</link>
      <description>&lt;P&gt;Since it is working as expected, please test&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://tridejur.uy/t123.php?id=18711573&amp;amp;alta=2018-12-22blank13:15:12%27" target="_blank"&gt;http://tridejur.uy/t123.php?id=18711573&amp;amp;alta=2018-12-22blank13:15:12%27&lt;/A&gt;&lt;/P&gt;&lt;P&gt;And write me on 26045165, please extend my trial 30 days longer, since, I have not received any replies, I just got my credit card, but wanted to become a partner, if you decide not to provide free business account to my solution there is no problem as well but please send me a message to 26045165, createacc.bat does use create folder and upload.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jan 2019 14:23:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/324059#M19054</guid>
      <dc:creator>tridejur</dc:creator>
      <dc:date>2019-01-19T14:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: "Dropbox-API-Arg": could not decode input as JSON</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/324403#M19068</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/893647"&gt;@tridejur&lt;/a&gt;&lt;SPAN&gt;&amp;nbsp;Y&lt;/SPAN&gt;&lt;SPAN&gt;ou already have an API support ticket open for this that we've been replying to. Please do not post in multiple places for the same issue. We'll continue following up with you on your ticket. Thanks!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jan 2019 17:30:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/quot-Dropbox-API-Arg-quot-could-not-decode-input-as-JSON/m-p/324403#M19068</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-01-21T17:30:22Z</dc:date>
    </item>
  </channel>
</rss>

