<?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 V2, shared folders not listed? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-V2-shared-folders-not-listed/m-p/225044#M12186</link>
    <description>Thank you! I was able to resolve the problem!</description>
    <pubDate>Fri, 09 Jun 2017 17:51:28 GMT</pubDate>
    <dc:creator>808phone</dc:creator>
    <dc:date>2017-06-09T17:51:28Z</dc:date>
    <item>
      <title>Dropbox V2, shared folders not listed?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-V2-shared-folders-not-listed/m-p/224728#M12148</link>
      <description>&lt;P&gt;When I query a folder, shared folders do not appear in the list. How do I display them?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DBUserClient *client = [DBClientsManager authorizedClient];
if (client != nil)
{
[[client.filesRoutes listFolder:dbPath] setResponseBlock:^(DBFILESListFolderResult *result, DBFILESListFolderError *routeError, DBRequestError *error) {
if (result) {

NSLog(@"result.entries %@.",result.entries);

for (DBFILESFolderMetadata *entry in result.entries)
{
if ([entry isKindOfClass:[DBFILESFolderMetadata class]]) {
DBFILESFolderMetadata *folderMetadata = (DBFILESFolderMetadata *)entry;

NSLog(@"Folder: %@", folderMetadata.name);
if (folderMetadata.sharedFolderId == nil) // no shared folders
[files addObject:folderMetadata];
}
}
myActionHandler(files);
}
}];
}&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 May 2019 09:21:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-V2-shared-folders-not-listed/m-p/224728#M12148</guid>
      <dc:creator>808phone</dc:creator>
      <dc:date>2019-05-29T09:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox V2, shared folders not listed?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-V2-shared-folders-not-listed/m-p/224853#M12155</link>
      <description>The shared folders are likely just not included on the first page of results. When using listFolder, make sure you check the hasMore value. If it's true, you need to call back to listFolderContinue to get more results. &lt;BR /&gt;&lt;BR /&gt;There's an example of doing so here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-obj-c#rpc-style-request" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-obj-c#rpc-style-request&lt;/A&gt;</description>
      <pubDate>Thu, 08 Jun 2017 19:04:40 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-V2-shared-folders-not-listed/m-p/224853#M12155</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-06-08T19:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox V2, shared folders not listed?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-V2-shared-folders-not-listed/m-p/225044#M12186</link>
      <description>Thank you! I was able to resolve the problem!</description>
      <pubDate>Fri, 09 Jun 2017 17:51:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-V2-shared-folders-not-listed/m-p/225044#M12186</guid>
      <dc:creator>808phone</dc:creator>
      <dc:date>2017-06-09T17:51:28Z</dc:date>
    </item>
  </channel>
</rss>

