<?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 Shared folders specific to current logged in user. in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251859#M14500</link>
    <description>&lt;P&gt;Hi there i am attempting to set up an application that allows myself to have a portal for my clients. A client would visit the log in page and then be redirected to a page that showed them folders that I have shared with them only. Would i have to use the dropbox team end points for this or is there a way to do it without? Any insight would be appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought that just setting the client key from my account, then using the users auth token to instanciate dbx, followed by using the sharingListFolders() would work but I suppose that was naive of me.&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:17:29 GMT</pubDate>
    <dc:creator>mattzj</dc:creator>
    <dc:date>2019-05-29T09:17:29Z</dc:date>
    <item>
      <title>Shared folders specific to current logged in user.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251859#M14500</link>
      <description>&lt;P&gt;Hi there i am attempting to set up an application that allows myself to have a portal for my clients. A client would visit the log in page and then be redirected to a page that showed them folders that I have shared with them only. Would i have to use the dropbox team end points for this or is there a way to do it without? Any insight would be appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought that just setting the client key from my account, then using the users auth token to instanciate dbx, followed by using the sharingListFolders() would work but I suppose that was naive of me.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:17:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251859#M14500</guid>
      <dc:creator>mattzj</dc:creator>
      <dc:date>2019-05-29T09:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Shared folders specific to current logged in user.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251954#M14508</link>
      <description>This sounds like something you should be able to accomplish without using the team endpoints. What are you stuck on with sharingListFolders[/Continue] exactly?&lt;BR /&gt;&lt;BR /&gt;Note that whether you use the user's access token or your own access token, it sounds like you'd need to filter the results of sharingListFolderMembers[/Continue] in order to list only the folders you're interested in. I.e., just the ones between you and user. Alternatively, you could just persistently keep track of the relevant shared folder IDs over time and filer that way.</description>
      <pubDate>Thu, 09 Nov 2017 16:52:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251954#M14508</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-11-09T16:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: Shared folders specific to current logged in user.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251966#M14512</link>
      <description>Yes that’s my problem. I need to filter the results returned by sharedFolder.&lt;BR /&gt;&lt;BR /&gt;Correct me if I’m wrong but sharinglistFolders returns an array of all shred folders that user has access to.&lt;BR /&gt;&lt;BR /&gt;I would like the user to only see shared folders between the user and myself. Is there a way to do this with api endpoints/arguments or should I just assign a prefix to my shared folders such as FAKECO and create my own function for sorting through the folder names returning those that matched.&lt;BR /&gt;&lt;BR /&gt;Thanks so much for the quick reply</description>
      <pubDate>Thu, 09 Nov 2017 18:55:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251966#M14512</guid>
      <dc:creator>mattzj</dc:creator>
      <dc:date>2017-11-09T18:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Shared folders specific to current logged in user.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251968#M14514</link>
      <description>&lt;P&gt;Yes, &lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#sharingListFolders__anchor" target="_self"&gt;sharingListFolders&lt;/A&gt;[&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#sharingListFoldersContinue__anchor" target="_self"&gt;/Continue&lt;/A&gt;] lists all of the shared folders the user has access to.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can list the shared folders using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#sharingListFolders__anchor" target="_self"&gt;sharingListFolders&lt;/A&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#sharingListFoldersContinue__anchor" target="_self"&gt;/Continue&lt;/A&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;, and then use &lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#sharingListFolderMembers__anchor" target="_self"&gt;sharingListFolderMembers&lt;/A&gt;[&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#sharingListFolderMembersContinue__anchor" target="_self"&gt;/Continue&lt;/A&gt;] to check the members, i.e., to see if it's a folder just between you and the user.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Nov 2017 19:06:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Shared-folders-specific-to-current-logged-in-user/m-p/251968#M14514</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-11-09T19:06:21Z</dc:date>
    </item>
  </channel>
</rss>

