<?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 Dropbox direct upload files from browser in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-direct-upload-files-from-browser/m-p/222009#M11820</link>
    <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT class="goog-text-highlight"&gt;I use php sdk&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT class=""&gt;Bir dosya yükleme formum var&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Normalde, dosya ilk önce sunucuya yüklenir ve daha sonra dropbox'a yüklenir&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Ancak, bu, büyük dosyalarda zaman kaybı ve kaynak tüketimine neden olur&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Dosyayı tarayıcıdan doğrudan yüklemenin bir yolu var mı?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;e.g.&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;&amp;lt;form action="myFile.php" method="post" enctype="multipart/form-data"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;input type="file" name="file" &amp;gt;&lt;BR /&gt; &amp;lt;input type="submit" &amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:22:28 GMT</pubDate>
    <dc:creator>emre</dc:creator>
    <dc:date>2019-05-29T09:22:28Z</dc:date>
    <item>
      <title>Dropbox direct upload files from browser</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-direct-upload-files-from-browser/m-p/222009#M11820</link>
      <description>&lt;P&gt;&lt;FONT&gt;&lt;FONT class="goog-text-highlight"&gt;I use php sdk&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT class=""&gt;Bir dosya yükleme formum var&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Normalde, dosya ilk önce sunucuya yüklenir ve daha sonra dropbox'a yüklenir&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Ancak, bu, büyük dosyalarda zaman kaybı ve kaynak tüketimine neden olur&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;Dosyayı tarayıcıdan doğrudan yüklemenin bir yolu var mı?&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT&gt;&lt;FONT&gt;e.g.&amp;nbsp;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;{&lt;/P&gt;
&lt;P&gt;&amp;lt;form action="myFile.php" method="post" enctype="multipart/form-data"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;input type="file" name="file" &amp;gt;&lt;BR /&gt; &amp;lt;input type="submit" &amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:22:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-direct-upload-files-from-browser/m-p/222009#M11820</guid>
      <dc:creator>emre</dc:creator>
      <dc:date>2019-05-29T09:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox direct upload files from browser</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-direct-upload-files-from-browser/m-p/222076#M11831</link>
      <description>For a server-side integration, such as when using PHP, it would be inefficient to upload to your server first and then to the Dropbox API.&lt;BR /&gt;&lt;BR /&gt;You can avoid this by writing the Dropbox API functionality to run client-side instead. For example, you can use the API v2 JavaScript SDK:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-js" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-js&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Note that you should only do this if you are uploading to the user's own Dropbox account. Writing the integration to run client-side necessarily exposes the access token to the user. If you are instead trying to always upload to a single Dropbox account, this would be a security issue in that you'd be exposing the access token to the user.</description>
      <pubDate>Fri, 19 May 2017 17:54:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-direct-upload-files-from-browser/m-p/222076#M11831</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-05-19T17:54:07Z</dc:date>
    </item>
  </channel>
</rss>

