<?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 Getting started - adding users to my app in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/276947#M16595</link>
    <description>&lt;P&gt;I have just created a Dropbox&amp;nbsp;app to allow users to save a file from my FileMaker app to a folder (created by the Dropbox&amp;nbsp;app) on their personal Dropbox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked great for me (I'm very excited!), now I need to be able to let a few others try it for testing. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to add these users from the App Console, but the only option I have under "Development users" is "Unlink all users". &amp;nbsp;I don't see how to add a user?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, when I add these users,&amp;nbsp;which method should I use to get them to be able to authenticate? &amp;nbsp;I plan on using OAuth 2. &amp;nbsp;For my test, I generated an access token which I inserted in my FileMaker url sent to Dropbox. &amp;nbsp;But I don't want to share that access token, do I? &amp;nbsp;I do have a secure method to save the generated token into the FileMaker app, should I use that? &amp;nbsp;Then it won't be accessible to the users, but I am unclear on whether they need to each generate their own token.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:13:10 GMT</pubDate>
    <dc:creator>dsimonson</dc:creator>
    <dc:date>2019-05-29T09:13:10Z</dc:date>
    <item>
      <title>Getting started - adding users to my app</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/276947#M16595</link>
      <description>&lt;P&gt;I have just created a Dropbox&amp;nbsp;app to allow users to save a file from my FileMaker app to a folder (created by the Dropbox&amp;nbsp;app) on their personal Dropbox.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked great for me (I'm very excited!), now I need to be able to let a few others try it for testing. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to add these users from the App Console, but the only option I have under "Development users" is "Unlink all users". &amp;nbsp;I don't see how to add a user?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, when I add these users,&amp;nbsp;which method should I use to get them to be able to authenticate? &amp;nbsp;I plan on using OAuth 2. &amp;nbsp;For my test, I generated an access token which I inserted in my FileMaker url sent to Dropbox. &amp;nbsp;But I don't want to share that access token, do I? &amp;nbsp;I do have a secure method to save the generated token into the FileMaker app, should I use that? &amp;nbsp;Then it won't be accessible to the users, but I am unclear on whether they need to each generate their own token.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:13:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/276947#M16595</guid>
      <dc:creator>dsimonson</dc:creator>
      <dc:date>2019-05-29T09:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started - adding users to my app</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/277104#M16599</link>
      <description>As long as you've clicked the "Enable additional users" button on the App Console already (which it sounds like you have), you don't need to do anything else on the App Console to add other users explicitly.&lt;BR /&gt;&lt;BR /&gt;In order to have other users connect their own Dropbox accounts, you should implement the OAuth 2 app authorization flow in your app. There's a guide here that explains how that flow works:&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;BR /&gt;You can find the documentation for it here:&lt;BR /&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;(If you're using an official Dropbox SDK though, refer to the specific documentation for the SDK, as it will do most of the work for you.)&lt;BR /&gt;&lt;BR /&gt;Once that's implemented in your app, you can distribute your app to them to have them use it and connect their Dropbox accounts.&lt;BR /&gt;&lt;BR /&gt;Each access token is for a specific app-user pair, and allows access to that user's account, to the extent allowed by the app's permission. You should not distribute your own access token to end-users. Each end-user will get their own access token via the app authorization flow.</description>
      <pubDate>Mon, 21 May 2018 14:36:16 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/277104#M16599</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-05-21T14:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started - adding users to my app</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/340758#M19738</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;As long as you've clicked the "Enable additional users" button on the App Console already (which it sounds like you have), you don't need to do anything else on the App Console to add other users explicitly.&lt;BR /&gt;&lt;BR /&gt;In order to have other users connect their own Dropbox accounts, you should implement the OAuth 2 app authorization flow in your app. There's a guide here that explains how that flow works:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/reference/oauth-guide" target="_blank" rel="noopener"&gt;https://www.dropbox.com/developers/reference/oauth-guide&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can find the documentation for it here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#authorization" target="_blank" rel="noopener"&gt;https://www.dropbox.com/developers/documentation/http/documentation#authorization&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;(If you're using an official Dropbox SDK though, refer to the specific documentation for the SDK, as it will do most of the work for you.)&lt;BR /&gt;&lt;BR /&gt;Once that's implemented in your app, you can distribute your app to them to have them use it and connect &lt;A href="https://anydesk.vip/" target="_self"&gt;their&lt;/A&gt; Dropbox accounts.&lt;BR /&gt;&lt;BR /&gt;Each access token is for a specific &lt;A href="https://akinator.ooo/" target="_self"&gt;app&lt;/A&gt;-user pair, and allows access to that user's account, to the extent allowed by the &lt;A href="https://kodi.software/download/" target="_self"&gt;app&lt;/A&gt;'s permission. You should not distribute your own access token to end-users. Each end-user will get their own access token via the app authorization flow.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Am facing the same problem. Hope anyone here can help me too. Thanks in advance. Regards,&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 16:44:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/340758#M19738</guid>
      <dc:creator>MilesSmith</dc:creator>
      <dc:date>2019-04-22T16:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Getting started - adding users to my app</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/340779#M19742</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/782464"&gt;@MilesSmith&lt;/a&gt;&amp;nbsp;Please &lt;A href="https://www.dropboxforum.com/t5/forums/postpage/board-id/101000014" target="_self"&gt;open a new thread&lt;/A&gt; with details of what specifically you're stuck on so we can help.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Apr 2019 17:52:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Getting-started-adding-users-to-my-app/m-p/340779#M19742</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-04-22T17:52:56Z</dc:date>
    </item>
  </channel>
</rss>

