<?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 Code for APIv2 in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252236#M14539</link>
    <description>&lt;P&gt;Sorry, I'm just a hack trying to upload a database backup to dropbox. API v1 worked fine but now I'm forced to migrate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the code I used to use, with the old API v1 commands and the new API v2 ones.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not working - can someone please help?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;use Dropbox\Dropbox;
use Dropbox\DropboxApp;
use Dropbox\DropboxFile;
$app = new DropboxApp(1,2,3);
$dropbox = new Dropbox($app);
$backupFile = "/home/edplorga/backups/temp/db_" . date('d-m-Y').".zip";
$backupFilename = "/db_" . date('d-m-Y').".zip";
&amp;nbsp;
//Old stuff
$appInfo = dbx\AppInfo::loadFromJsonFile(DIR."/config.json");
$dbxClient = new dbx\Client($accessToken, "EDPL_SQL_Backups");
$f = fopen($backupFile, "rb");
$result = $dbxClient-&amp;gt;uploadFile($backupFilename, dbx\WriteMode::force(), $f);
fclose($f);
&amp;nbsp;
//New stuff
$dropboxFile = DropboxFile::createByStream($backupFilename, $backupFile);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 May 2020 17:10:47 GMT</pubDate>
    <dc:creator>jiska78</dc:creator>
    <dc:date>2020-05-29T17:10:47Z</dc:date>
    <item>
      <title>Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252236#M14539</link>
      <description>&lt;P&gt;Sorry, I'm just a hack trying to upload a database backup to dropbox. API v1 worked fine but now I'm forced to migrate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the code I used to use, with the old API v1 commands and the new API v2 ones.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not working - can someone please help?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;use Dropbox\Dropbox;
use Dropbox\DropboxApp;
use Dropbox\DropboxFile;
$app = new DropboxApp(1,2,3);
$dropbox = new Dropbox($app);
$backupFile = "/home/edplorga/backups/temp/db_" . date('d-m-Y').".zip";
$backupFilename = "/db_" . date('d-m-Y').".zip";
&amp;nbsp;
//Old stuff
$appInfo = dbx\AppInfo::loadFromJsonFile(DIR."/config.json");
$dbxClient = new dbx\Client($accessToken, "EDPL_SQL_Backups");
$f = fopen($backupFile, "rb");
$result = $dbxClient-&amp;gt;uploadFile($backupFilename, dbx\WriteMode::force(), $f);
fclose($f);
&amp;nbsp;
//New stuff
$dropboxFile = DropboxFile::createByStream($backupFilename, $backupFile);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 17:10:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252236#M14539</guid>
      <dc:creator>jiska78</dc:creator>
      <dc:date>2020-05-29T17:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252393#M14545</link>
      <description>&lt;P&gt;It looks like you're using the third party PHP SDK &lt;A href="https://github.com/kunalvarma05/dropbox-php-sdk" target="_self"&gt;kunalvarma05/dropbox-php-sdk&lt;/A&gt;. That's made by a third party so I'm afraid I can't offer help with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I&amp;nbsp;recommend referring to it's documentation for information on how to use it, or opening an issue there if you need help with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(If the&amp;nbsp;Dropbox API itself isn't working as expected of course, please share the unexpected behavior/error and we'll be happy to help.)&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2017 16:52:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252393#M14545</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-11-13T16:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252434#M14553</link>
      <description>&lt;P&gt;Hi Greg, thanks for your reply. I'm more than happy to use the Dropbox API rather than a 3rd Party. Not too fussed how it connects to be honest, as long as it does. How do I go about using the Dropbox API to connect and upload a file?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2017 22:06:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252434#M14553</guid>
      <dc:creator>jiska78</dc:creator>
      <dc:date>2017-11-13T22:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252563#M14561</link>
      <description>&lt;P&gt;If you want to call the&amp;nbsp;Dropbox API directly, rather than via a library, you can makes HTTPS connections to the endpoints themselves. For example, to upload a file, you would use &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-upload" target="_self"&gt;/2/files/upload&lt;/A&gt;. Calling that using curl in PHP would look something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    &amp;lt;?php

    $path = 'test_php_upload.txt';
    $fp = fopen($path, 'rb');
    $size = filesize($path);

    $cheaders = array('Authorization: Bearer &amp;lt;ACCESS_TOKEN&amp;gt;',
                      'Content-Type: application/octet-stream',
                      'Dropbox-API-Arg: {"path":"/test/'.$path.'", "mode":"add"}');

    $ch = curl_init('https://content.dropboxapi.com/2/files/upload');
    curl_setopt($ch, CURLOPT_HTTPHEADER, $cheaders);
    curl_setopt($ch, CURLOPT_PUT, true);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
    curl_setopt($ch, CURLOPT_INFILE, $fp);
    curl_setopt($ch, CURLOPT_INFILESIZE, $size);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($ch);

    echo $response;
    curl_close($ch);
    fclose($fp);

    ?&amp;gt;&lt;/PRE&gt;
&lt;P&gt;`&amp;lt;ACCESS_TOKEN&amp;gt;` should be replaced with the OAuth 2 access token.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2017 16:54:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/252563#M14561</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-11-14T16:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/253454#M14627</link>
      <description>&lt;P&gt;Brilliant Greg, that's working, thankyou.&lt;BR /&gt;One problem tho, I am uploading from a local path and it seems to be holding that path in to Dropbox. I just want to upload to the root folder in Dropbox, but every change I make seems to break the code.&lt;BR /&gt;Are you able to assist please?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;?php

$filename = "/db_" . date('d-m-Y').".zip";
$path = "/dir1/dir2/dir3/dir4" . $filename;
$fp = fopen($path, 'rb');
$size = filesize($path);

$cheaders = array('Authorization: Bearer 1234567890',
'Content-Type: application/octet-stream',
'Dropbox-API-Arg: {"path":"'.$path.'", "mode":"add"}');

$ch = curl_init('https://content.dropboxapi.com/2/files/upload');
curl_setopt($ch, CURLOPT_HTTPHEADER, $cheaders);
curl_setopt($ch, CURLOPT_PUT, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($ch, CURLOPT_INFILE, $fp);
curl_setopt($ch, CURLOPT_INFILESIZE, $size);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

echo $response;
curl_close($ch);
fclose($fp);&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Nov 2017 18:49:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/253454#M14627</guid>
      <dc:creator>jiska78</dc:creator>
      <dc:date>2017-11-20T18:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/253550#M14638</link>
      <description>&lt;P&gt;The uploaded file path in&amp;nbsp;Dropbox is defined by&amp;nbsp;the "path" parameter in Dropbox-API-Arg.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, for example, to upload a file "test_php_upload.txt" to root, the path parameter should be "/test_php_upload.txt".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a version of my previous example that would do that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    &amp;lt;?php

    $path = 'test_php_upload.txt';
    $fp = fopen($path, 'rb');
    $size = filesize($path);

    $cheaders = array('Authorization: Bearer &amp;lt;ACCESS_TOKEN&amp;gt;',
                      'Content-Type: application/octet-stream',
                      'Dropbox-API-Arg: {"path":"/'.$path.'", "mode":"add"}');

    $ch = curl_init('https://content.dropboxapi.com/2/files/upload');
    curl_setopt($ch, CURLOPT_HTTPHEADER, $cheaders);
    curl_setopt($ch, CURLOPT_PUT, true);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');
    curl_setopt($ch, CURLOPT_INFILE, $fp);
    curl_setopt($ch, CURLOPT_INFILESIZE, $size);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($ch);

    echo $response;
    curl_close($ch);
    fclose($fp);

    ?&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 18:52:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/253550#M14638</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-11-20T18:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/253574#M14644</link>
      <description>Strange I thought I did that but brilliant - all working well now.&lt;BR /&gt;&lt;BR /&gt;Thankyou very much for your help Greg, it is greatly appreciated.</description>
      <pubDate>Mon, 20 Nov 2017 21:56:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/253574#M14644</guid>
      <dc:creator>jiska78</dc:creator>
      <dc:date>2017-11-20T21:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/532058#M25661</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;I used the code that you provided and I was able to get it to work!&amp;nbsp; It's different than the Postman Collection so the fopen definitely helped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, I am coming across the problem of the api not changing the filename if there is already the same named file inside the folder, adding the (#) at the end of the file name.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have "mode" : "add", "autorename" : true but still nada.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When playing around with the PHP Curl code from Postman, it worked as soon as I removed the drive letter in the path, but no luck here.&amp;nbsp; Below is my code...any help is greatly appreciated...Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;lt;?php&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;$path&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'\Documents\ShXXSh\Sample&amp;nbsp;Report.pdf'&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$fp&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;fopen&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$path&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'rb'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$size&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;filesize&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$path&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;$cheaders&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;array&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dropbox-API-Arg:&amp;nbsp;{&amp;nbsp;"path":&amp;nbsp;"/Bxxx Ox Dxxxxxx/ShXXSh/Test7-9-21/Clue/Sample&amp;nbsp;Report.pdf",&amp;nbsp;"mode":&amp;nbsp;"add",&amp;nbsp;"autorename":&amp;nbsp;true,&amp;nbsp;"mute":&amp;nbsp;false,&amp;nbsp;"strict_conflict":&amp;nbsp;false}'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Dropbox-API-Path-Root:&amp;nbsp;{".tag":&amp;nbsp;"namespace_id",&amp;nbsp;"namespace_id":&amp;nbsp;"XXX"}'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Dropbox-API-Select-User:&amp;nbsp;dbmid:XXXXXXXXXXXXXXXXXXXXX'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Content-Type:&amp;nbsp;application/octet-stream'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Authorization:&amp;nbsp;Bearer&amp;nbsp;XXXXXXXXXXXXXXXXXXXXXXXXXXXXX'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;curl_init&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;A href="https://content.dropboxapi.com/2/files/upload" target="_blank"&gt;https://content.dropboxapi.com/2/files/upload&lt;/A&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl_setopt&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;CURLOPT_HTTPHEADER,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$cheaders&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl_setopt&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;CURLOPT_PUT,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl_setopt&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;CURLOPT_CUSTOMREQUEST,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'POST'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl_setopt&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;CURLOPT_INFILE,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$fp&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl_setopt&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;CURLOPT_INFILESIZE,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$size&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl_setopt&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;CURLOPT_RETURNTRANSFER,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;true&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;$response&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;curl_exec&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;echo&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;$response&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;curl_close&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$ch&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;fclose&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$fp&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 10 Jul 2021 03:39:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/532058#M25661</guid>
      <dc:creator>mabramsphoto</dc:creator>
      <dc:date>2021-07-10T03:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/532461#M25667</link>
      <description>&lt;P&gt;What is the current behavior you're seeing after uploading? Do you not see any new file uploaded, or do you see the file being updated?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Jul 2021 20:26:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/532461#M25667</guid>
      <dc:creator>tahsini</dc:creator>
      <dc:date>2021-07-12T20:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/532925#M25687</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1457455"&gt;@mabramsphoto&lt;/a&gt; Also, note that Dropbox won't consider it a conflict (that is, won't make a new file), if you upload the same contents as the existing file. You should upload different contents to see that behavior, or set "strict_conflict" to true if you want that behavior even for identical contents.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jul 2021 15:29:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/532925#M25687</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2021-07-14T15:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/598646#M27811</link>
      <description>&lt;P&gt;how to write code for File Upload using Nodejs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 06:52:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/598646#M27811</guid>
      <dc:creator>yunu</dc:creator>
      <dc:date>2022-05-23T06:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Code for APIv2</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/598885#M27815</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1543944"&gt;@yunu&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Take a look on the example &lt;A title="upload.js" href="https://github.com/dropbox/dropbox-sdk-js/blob/main/examples/typescript/node/upload.js" target="_blank" rel="noopener"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 12:08:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Code-for-APIv2/m-p/598885#M27815</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-05-23T12:08:31Z</dc:date>
    </item>
  </channel>
</rss>

