<?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 VBA code to get Shared Folder link in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/344801#M19901</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can somebody please tell me if it's possible to retrieve a shared folder link (that I will later send on to a 3rd party) using VBA and presumably the DropBox API?&amp;nbsp; I know the exact path to the folder on my C drive that I would like to send a link to ("C:\Users\me\Dropbox\JobName\Folder2Link") so just want to retrieve the share link that I would normally get by right-clicking on the folder in question and selecting 'Copy Dropbox Link' from the menu.&lt;/P&gt;&lt;P&gt;If it is possible, I would very much appreciate some direction on how to accomplish this.&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2019 09:06:26 GMT</pubDate>
    <dc:creator>gcaspall</dc:creator>
    <dc:date>2019-05-29T09:06:26Z</dc:date>
    <item>
      <title>VBA code to get Shared Folder link</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/344801#M19901</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can somebody please tell me if it's possible to retrieve a shared folder link (that I will later send on to a 3rd party) using VBA and presumably the DropBox API?&amp;nbsp; I know the exact path to the folder on my C drive that I would like to send a link to ("C:\Users\me\Dropbox\JobName\Folder2Link") so just want to retrieve the share link that I would normally get by right-clicking on the folder in question and selecting 'Copy Dropbox Link' from the menu.&lt;/P&gt;&lt;P&gt;If it is possible, I would very much appreciate some direction on how to accomplish this.&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:06:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/344801#M19901</guid>
      <dc:creator>gcaspall</dc:creator>
      <dc:date>2019-05-29T09:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: VBA code to get Shared Folder link</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/344836#M19903</link>
      <description>&lt;P&gt;Yes, the&amp;nbsp;Dropbox API does offer the ability to programmatically create shared links like this. That's available via &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-create_shared_link_with_settings" target="_self"&gt;the /2/sharing/create_shared_link_with_settings endpoint&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We&amp;nbsp;recommend using one of &lt;A href="https://www.dropbox.com/developers/documentation" target="_self"&gt;the official&amp;nbsp;Dropbox API v2 SDKs&lt;/A&gt; to access the API if possible.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance, in &lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet" target="_self"&gt;the&amp;nbsp;Dropbox API v2 .NET SDK&lt;/A&gt;, this functionality is available as &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Sharing_Routes_SharingUserRoutes_CreateSharedLinkWithSettingsAsync_1.htm" target="_self"&gt;the CreateSharedLinkWithSettingsAsync method&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;When using the API, file paths should be relative to the&amp;nbsp;Dropbox root, so in your example the path would be "/JobName/Folder2Link".&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 15:20:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/344836#M19903</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-05-17T15:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: VBA code to get Shared Folder link</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/344964#M19915</link>
      <description>&lt;P&gt;Thanks very much Greg&lt;/P&gt;&lt;P&gt;If you could point me in the direction of where to download the API. and some samples of VBA code that I can relate to, I'd be most grateful.&lt;/P&gt;&lt;P&gt;Thanks very much&lt;/P&gt;&lt;P&gt;Graham&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 08:38:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/344964#M19915</guid>
      <dc:creator>gcaspall</dc:creator>
      <dc:date>2019-05-17T08:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: VBA code to get Shared Folder link</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/345019#M19920</link>
      <description>&lt;P&gt;I don't believe we have any samples or resources for VBA in particular unfortunately. If you can't use one of &lt;A href="https://www.dropbox.com/developers/documentation" target="_self"&gt;the official SDKs&lt;/A&gt; (or a third party library), you'll need to use the HTTPS API directly. You can find the documentation for the HTTPS endpoints here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#sharing-create_shared_link_with_settings" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#sharing-create_shared_link_with_settings&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That includes curl examples that you can translate for whatever HTTPS client you're using.&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 15:41:43 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/VBA-code-to-get-Shared-Folder-link/m-p/345019#M19920</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-05-17T15:41:43Z</dc:date>
    </item>
  </channel>
</rss>

