<?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 How to get Shared Folder ID for a shared folder in java using dropbox sdk. in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-Shared-Folder-ID-for-a-shared-folder-in-java-using/m-p/599606#M27848</link>
    <description>&lt;P&gt;How to get Shared Folder ID for a shared folder in java using dropbox sdk.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using the below method to share a folder. But this is returning ShareFolderLaunch. But I want to share a folder and get SharedFolderMetadata . If not shareFolder() method is there any other method which returns&amp;nbsp;SharedFolderMetadata ??&lt;/P&gt;
&lt;PRE&gt;ShareFolderLaunch data = client.sharing().shareFolder(&lt;SPAN&gt;"/TestShareFolder/"&lt;/SPAN&gt;)&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to share a folder and get the value of SharedFolderID from SharedFolderMetadata class , something like SharedFolderMetadata.getSharedFolderId().&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please suggest me what action or which methods returns me SharedFolderMetadata.getSharedFolderId()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 26 May 2022 07:19:44 GMT</pubDate>
    <dc:creator>Reshma</dc:creator>
    <dc:date>2022-05-26T07:19:44Z</dc:date>
    <item>
      <title>How to get Shared Folder ID for a shared folder in java using dropbox sdk.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-Shared-Folder-ID-for-a-shared-folder-in-java-using/m-p/599606#M27848</link>
      <description>&lt;P&gt;How to get Shared Folder ID for a shared folder in java using dropbox sdk.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using the below method to share a folder. But this is returning ShareFolderLaunch. But I want to share a folder and get SharedFolderMetadata . If not shareFolder() method is there any other method which returns&amp;nbsp;SharedFolderMetadata ??&lt;/P&gt;
&lt;PRE&gt;ShareFolderLaunch data = client.sharing().shareFolder(&lt;SPAN&gt;"/TestShareFolder/"&lt;/SPAN&gt;)&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to share a folder and get the value of SharedFolderID from SharedFolderMetadata class , something like SharedFolderMetadata.getSharedFolderId().&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please suggest me what action or which methods returns me SharedFolderMetadata.getSharedFolderId()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 07:19:44 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-Shared-Folder-ID-for-a-shared-folder-in-java-using/m-p/599606#M27848</guid>
      <dc:creator>Reshma</dc:creator>
      <dc:date>2022-05-26T07:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Shared Folder ID for a shared folder in java using dropbox sdk.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-Shared-Folder-ID-for-a-shared-folder-in-java-using/m-p/599727#M27859</link>
      <description>&lt;P&gt;If &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/ShareFolderLaunch.html#isAsyncJobId()" target="_self"&gt;ShareFolderLaunch.isAsyncJobId&lt;/A&gt; from &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/DbxUserSharingRequests.html#shareFolder(java.lang.String)" target="_self"&gt;shareFolder&lt;/A&gt; is true, you should then poll &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/DbxUserSharingRequests.html#checkShareJobStatus(java.lang.String)" target="_self"&gt;checkShareJobStatus&lt;/A&gt; using the job ID from &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/ShareFolderLaunch.html#getAsyncJobIdValue()" target="_self"&gt;ShareFolderLaunch.getAsyncJobIdValue&lt;/A&gt; to check on the status of that share job. That will give you a &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/ShareFolderJobStatus.html" target="_self"&gt;ShareFolderJobStatus&lt;/A&gt; you can check to see the current status. When it's complete, you can get the &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/SharedFolderMetadata.html" target="_self"&gt;SharedFolderMetadata&lt;/A&gt; from &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/ShareFolderJobStatus.html#getCompleteValue()" target="_self"&gt;ShareFolderJobStatus.getCompleteValue&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For existing shared folders, check out &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/files/DbxUserFilesRequests.html#getMetadata(java.lang.String)" target="_self"&gt;DbxUserFilesRequests.getMetadata&lt;/A&gt; and &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v5.2.0/com/dropbox/core/v2/sharing/DbxUserSharingRequests.html#getFolderMetadata(java.lang.String)" target="_self"&gt;DbxUserSharingRequests.getFolderMetadata&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer to the linked documentation pages for more information.&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 16:05:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-Shared-Folder-ID-for-a-shared-folder-in-java-using/m-p/599727#M27859</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-05-26T16:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get Shared Folder ID for a shared folder in java using dropbox sdk.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-Shared-Folder-ID-for-a-shared-folder-in-java-using/m-p/599880#M27867</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp; Thanks . This helps.&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 08:04:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-get-Shared-Folder-ID-for-a-shared-folder-in-java-using/m-p/599880#M27867</guid>
      <dc:creator>Reshma</dc:creator>
      <dc:date>2022-05-27T08:04:56Z</dc:date>
    </item>
  </channel>
</rss>

