<?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: DropBox Auth flow issue in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275825#M16499</link>
    <description>For the Dropbox Saver, the integration is done in JavaScript in the browser.&lt;BR /&gt;&lt;BR /&gt;For the Dropbox API, we don't have any official PHP/Laravel SDK or examples, but there are some third party PHP libraries listed here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/communitysdks" target="_blank"&gt;https://www.dropbox.com/developers/documentation/communitysdks&lt;/A&gt;</description>
    <pubDate>Thu, 10 May 2018 17:54:31 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2018-05-10T17:54:31Z</dc:date>
    <item>
      <title>DropBox Auth flow issue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275818#M16495</link>
      <description>&lt;P&gt;Would it be possible to have a web page where a user can select multiple files from our server and have the server send those files directly to that user's dropbox account?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume they would need to authenticate with dropbox somehow then the server uses that session to upload the files?&lt;/P&gt;&lt;P&gt;How would I be able to do this if at all possible?&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:13:20 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275818#M16495</guid>
      <dc:creator>gdev</dc:creator>
      <dc:date>2019-05-29T09:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: DropBox Auth flow issue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275822#M16496</link>
      <description>Yes, this is possible. The easiest way would be to use the Dropbox Saver:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/saver" target="_blank"&gt;https://www.dropbox.com/developers/saver&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you want a more automated or custom integration though, you can use the Dropbox API instead. You would need to send the user through the OAuth app authorization flow:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/reference/oauth-guide" target="_blank"&gt;https://www.dropbox.com/developers/reference/oauth-guide&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#authorization" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#authorization&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Then you can upload programmatically, e.g., using /2/files/upload:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-upload" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#files-upload&lt;/A&gt;</description>
      <pubDate>Thu, 10 May 2018 17:49:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275822#M16496</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-05-10T17:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: DropBox Auth flow issue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275823#M16497</link>
      <description>&lt;P&gt;Nice! Thanks for the quick response. Any chance you know of any PHP examples or Laravel examples?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 17:51:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275823#M16497</guid>
      <dc:creator>gdev</dc:creator>
      <dc:date>2018-05-10T17:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: DropBox Auth flow issue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275825#M16499</link>
      <description>For the Dropbox Saver, the integration is done in JavaScript in the browser.&lt;BR /&gt;&lt;BR /&gt;For the Dropbox API, we don't have any official PHP/Laravel SDK or examples, but there are some third party PHP libraries listed here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/communitysdks" target="_blank"&gt;https://www.dropbox.com/developers/documentation/communitysdks&lt;/A&gt;</description>
      <pubDate>Thu, 10 May 2018 17:54:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275825#M16499</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-05-10T17:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: DropBox Auth flow issue</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275826#M16500</link>
      <description>&lt;P&gt;You the man, thanks Greg!&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 17:56:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBox-Auth-flow-issue/m-p/275826#M16500</guid>
      <dc:creator>gdev</dc:creator>
      <dc:date>2018-05-10T17:56:47Z</dc:date>
    </item>
  </channel>
</rss>

