<?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: How to use the public url to access files in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329275#M480</link>
    <description>&lt;P&gt;Any ideas?&lt;/P&gt;</description>
    <pubDate>Sun, 17 Feb 2019 11:06:00 GMT</pubDate>
    <dc:creator>pankaj_agarwal</dc:creator>
    <dc:date>2019-02-17T11:06:00Z</dc:date>
    <item>
      <title>How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/328617#M471</link>
      <description>&lt;P&gt;I am trying to create an app in c# which will download files from a given url which looks like this&lt;/P&gt;&lt;P&gt;&lt;A href="https://wixlabs---dropbox-folder.appspot.com/index?instance=UexTyTTXTALjKbz1f1P3H5nZAFTiMsLw2wWcu_0uebU.eyJpbnN0YW5jZUlkIjoiNzk4YzZlYTUtMDg5Yi00ZjFlLWI2NzMtOWYxZjA1OTU1YmQ5IiwiYXBwRGVmSWQiOiIxNDkyNDg2NC01NmQ1LWI5NGItMDYwZi1jZDU3YmQxNmNjMjYiLCJtZXRhU2l0ZUlkIjoiYmRkMzFlNjMtY2I5Ny00ZTMxLWI5NGEtMGFhNmI5MzgwYjY3Iiwic2lnbkRhdGUiOiIyMDE4LTEwLTA0VDAwOjE4OjIyLjM5MFoiLCJ1aWQiOm51bGwsInZlbmRvclByb2R1Y3RJZCI6bnVsbCwiZGVtb01vZGUiOmZhbHNlfQ&amp;amp;target=_top&amp;amp;width=576&amp;amp;compId=comp-jmtmo1bb&amp;amp;viewMode=viewer-seo" target="_blank"&gt;https://wixlabs---dropbox-folder.appspot.com/index?instance=UexTyTTXTALjKbz1f1P3H5nZAFTiMsLw2wWcu_0uebU.eyJpbnN0YW5jZUlkIjoiNzk4YzZlYTUtMDg5Yi00ZjFlLWI2NzMtOWYxZjA1OTU1YmQ5IiwiYXBwRGVmSWQiOiIxNDkyNDg2NC01NmQ1LWI5NGItMDYwZi1jZDU3YmQxNmNjMjYiLCJtZXRhU2l0ZUlkIjoiYmRkMzFlNjMtY2I5Ny00ZTMxLWI5NGEtMGFhNmI5MzgwYjY3Iiwic2lnbkRhdGUiOiIyMDE4LTEwLTA0VDAwOjE4OjIyLjM5MFoiLCJ1aWQiOm51bGwsInZlbmRvclByb2R1Y3RJZCI6bnVsbCwiZGVtb01vZGUiOmZhbHNlfQ&amp;amp;target=_top&amp;amp;width=576&amp;amp;compId=comp-jmtmo1bb&amp;amp;viewMode=viewer-seo&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This is the code I am using:&lt;/P&gt;&lt;P&gt;Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;using&lt;/SPAN&gt;&amp;nbsp;(&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;dbx&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;DropboxClient&lt;/SPAN&gt;(&lt;SPAN&gt;"My ACCESS TOKEN HERE"&lt;/SPAN&gt;))
			{
				&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;metadata&amp;nbsp;=&amp;nbsp;&lt;SPAN&gt;await&lt;/SPAN&gt;&amp;nbsp;dbx.Sharing.GetSharedLinkMetadataAsync(url);
				&lt;SPAN&gt;Console&lt;/SPAN&gt;.WriteLine(&lt;SPAN&gt;$"&lt;/SPAN&gt;{metadata.IsFolder}&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;{metadata.Name}&lt;SPAN&gt;"&lt;/SPAN&gt;);
			}&lt;/PRE&gt;&lt;P&gt;And this is the exception I get:&lt;/P&gt;&lt;P&gt;ApiException`1: shared_link_not_found/...&lt;/P&gt;&lt;P&gt;Am I doing something wrong? The above link is a publicly shared link and I was able to download the files in the browser.&lt;/P&gt;&lt;P&gt;Thanks for the help.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:05:12 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/328617#M471</guid>
      <dc:creator>pankaj_agarwal</dc:creator>
      <dc:date>2019-05-29T09:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/328798#M473</link>
      <description>&lt;P&gt;[Cross-linking for reference: &lt;A href="https://stackoverflow.com/questions/54691106/need-help-coding-a-downloader-for-dropbox" target="_self"&gt;https://stackoverflow.com/questions/54691106/need-help-coding-a-downloader-for-dropbox&lt;/A&gt;&amp;nbsp;]&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;GetSharedLinkMetadataAsync method is meant for accessing the information about shared links from&amp;nbsp;Dropbox itself, e.g., links like this:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/s/yvkdov5srlqalkd/Getting%20Started.pdf?dl=0" target="_blank"&gt;https://www.dropbox.com/s/yvkdov5srlqalkd/Getting%20Started.pdf?dl=0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The link you shared is from "appspot.com", so it won't work with&amp;nbsp;GetSharedLinkMetadataAsync.&lt;/P&gt;
&lt;P&gt;If you're just trying to download a file from a publicly accessible link to the local filesystem, you don't need to use the&amp;nbsp;Dropbox API; you can just use an HTTPS client.&lt;/P&gt;
&lt;P&gt;If you want to save the linked file directly to a&amp;nbsp;Dropbox account, you should instead use &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_Files_Routes_FilesUserRoutes_SaveUrlAsync_1.htm" target="_self"&gt;SaveUrlAsync&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 14:33:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/328798#M473</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-02-14T14:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329000#M475</link>
      <description>&lt;P&gt;Can you give me some pointers on how to achieve this because with WebClient I am getting a HTML Page.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 07:17:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329000#M475</guid>
      <dc:creator>pankaj_agarwal</dc:creator>
      <dc:date>2019-02-15T07:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329054#M477</link>
      <description>&lt;P&gt;What specifically are you trying to do, and what are you stuck on at this point?&lt;/P&gt;
&lt;P&gt;If you're trying to downloading from&amp;nbsp;appspot.com using&amp;nbsp;WebClient, I can't offer help with that, as that's not related to Dropbox. (That said, what you describe does seem expected, since the link you shared is just to an HTML web page. It sounds like you probably would want to use the link to the file on that page instead.)&lt;/P&gt;
&lt;P&gt;If you're trying to use SaveUrlAsync, or if you are trying to use&amp;nbsp;GetSharedLinkMetadataAsync and switched to an actual&amp;nbsp;Dropbox shared link, please shared your updated code and let me know what isn't working.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 15:21:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329054#M477</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-02-15T15:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329157#M479</link>
      <description>&lt;P&gt;The above link shows a folder with files in the browser. I am trying to download those files.&amp;nbsp;I tried attaching the html file here but it is not working so I am pasting the code here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html ng-app="myApp"&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;base href="/"&amp;gt;
&amp;lt;title&amp;gt;Dropbox Folder&amp;lt;/title&amp;gt;
&amp;lt;meta charset="utf-8"&amp;gt;
&amp;lt;meta name="viewport" content="width=device-width"&amp;gt;
&amp;lt;link rel="icon" href="assets/images/favicon.ico" type="image/x-icon"&amp;gt;
&amp;lt;link rel="stylesheet" href="//static.parastorage.com/services/third-party/fonts/Helvetica/fontFace.css"&amp;gt;
&amp;lt;link rel="stylesheet" href="styles/index.css"/&amp;gt;
&amp;lt;script src="//static.parastorage.com/services/js-sdk/1.108.0/js/wix-private.min.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script type="text/javascript"&amp;gt;
var initialState = {"APP_ID":"14924864-56d5-b94b-060f-cd57bd16cc26","DEFAULT_LANGUAGE":"en","DISPLAY_MODE_FILES":"files","DISPLAY_MODE_FOLDER":"folder","LIST_FULL_WIDTH":1,"LIST_PARTIAL_WIDTH":0,"FOLDER_STYLE_OUTLINE":"outline","FOLDER_STYLE_SOLID":"solid","SIZE_SMALL":"small","SIZE_LARGE":"large","appName":"myApp","origin":"app_settings","widget_origin":"widget","appId":"14924864-56d5-b94b-060f-cd57bd16cc26","AUTH_URL":"https://www.dropbox.com/oauth2/authorize?client_id=rn9cfkc30p3l3po&amp;amp;response_type=token&amp;amp;state=testtoken&amp;amp;force_reapprove=false","APP_KEY":"rn9cfkc30p3l3po","REGISTER_URL":"https://www.dropbox.com/register","design":{"folder_row":{"color":"color-8","opacity":0.15},"bread_crumbs":{"color":"color-4","text":"Body-M","fontSize":12,"arrowColor":"color-4"},"number_items":{"color":"color-4","text":"Body-M","fontSize":12},"connected_cloud":{"color":"color-8","text":"Body-M"},"empty_folder_header":{"text":"Body-L","color":"color-5","fontSize":15,"fontWeight":"bold"},"empty_folder_text":{"text":"Body-M","color":"color-4","fontSize":14},"empty_folder_image":{"color":"color-8"},"icon_color":{"name":"iconColor","value":"color-8","opacity":"0.8"},"folder_icon":{"textFont":{"name":"folderIconFont","value":"Body-M","theme":"font_8"},"textColor":{"name":"folderIconColor","value":"color-8"}},"list":{"title":{"textFont":{"name":"ListTitleFont","value":"Body-L","theme":"font_7","startWithSize":20,"maxSize":42},"textColor":{"name":"ListTitleColor","value":"color-5"}},"files_names":{"textFont":{"name":"ListFilesNamesFont","value":"Body-M","theme":"font_8","maxSize":22},"textColor":{"name":"ListFilesNamesColor","value":"color-4"}},"background":{"value":"color-1","name":"listBackgroundColor","opacity":"1"},"border":{"value":"color-5","name":"listBorderColor","opacity":"0.2"},"icons":{"name":"iconsListColor","value":"color-8"}}},"data":{"settings":{"design":{"folder":{"icon_size":"small","style":"outline"},"list":{"show_numbers_of_items":1,"show_preview":1}},"lang":"en","email":{"text":"","show":1},"layout":{"type":"files"},"account":{"folderPath":"[{\"name\":\"Dropbox\",\"path_lower\":\"/\"}]","folder":"OmniScreen","email":"omnicoomniscreen@gmail.com","name":"OmniScreen Omnico","accessToken":"","fullPath":"/omniscreen","connected":1},"title":{"show":1,"text":"OmniScreen"}}}};
initialState.locationParams = document.location.search;
&amp;lt;/script&amp;gt;
&amp;lt;style wix-style type="text/css" ng-non-bindable=""&amp;gt;
.folderRow::before {
background-color: {{color-8}};
opacity: 0.15;
}
.file-arrow #z-Stroke-2 {
stroke: {{color-4}};
}

.folder-path-text{
font-size: 12px !important;
color: {{color-4}};
{{Body-M}};
}

.items-row {
font-size: 12px !important;
color: {{color-4}};
{{Body-M}};
}

.title {
{{Body-L}};
font-size: 20px;
{{style.ListTitleFont}};
color: {{style.ListTitleColor color-5}};
}
.closeMe .closeMe-fill {
fill: {{style.ListTitleColor color-5}};
}
.folderName {
{{ style.ListFilesNamesFont Body-M}}
color: {{style.ListFilesNamesColor color-4}}
}

.extention , .fileNameNoExtention{
{{ style.ListFilesNamesFont Body-M}}
color: {{style.ListFilesNamesColor color-4}}
}

.items {
font-size: 12px !important;
color: {{color-4}};
{{Body-M}};
}

.ispopup {
background-color: {{style.listBackgroundColor color-1}};
}

.defaultBackground{
background-color: {{style.listBackgroundColor color-1}};
border : 1px solid rgba(0,0,0,0.2) ;
border-color: {{style.listBorderColor}} !important;
}

.previewBorder{
background-color: {{style.listBackgroundColor color-1}};
}

.webui-popover,.previewBorder,.full-screen-connected {
border-color: {{color-5}} ;
border-color: {{style.listBorderColor}} !important;
}
.full-screen-connected {
background-color: {{color-1}};
color: {{color-5}};
}
.divider , .lastDivider {
background-color: {{color-5}} ;
background-color: {{style.listBorderColor}};
}

.mCSB_dragger_bar.inited{
background-color: {{color-5}} !important;
background-color: {{style.listBorderColor}} !important;
}

#mCSB_2_scrollbar_vertical{

}

.webui-arrow {
border-top-color: {{style.listBorderColor color-5}} !important;
}

.arrowIcon .fill-svg, .mobileArrow .fill-svg , .home-icon path{
fill-rule: evenodd;
fill : {{style.iconsListColor color-8}} !important;
}

.downloadFolderIcon .stroke-svg , .downloadFolderIcon path{
stroke : {{style.iconsListColor color-8}};
}

.viewFileIcon .symbol-showComp path{
fill : {{style.iconsListColor color-8}};
}
.closeMe .closeMe-fill {
fill : {{style.iconsListColor color-8}};
}
.folder-path-text:not(.selected-folder){
color : {{style.iconsListColor color-8}};
}

.fileIcon .fill-svg , .folderIcon .fill-svg{
fill: {{style.iconsListColor color-8}};
}

.fileIcon .stroke-svg , .folderIcon .stroke-svg {
stroke: {{style.iconsListColor color-8}};
}

.folderLayoutIconFill .fill-svg , .folderLayoutIconNotFill .fill-svg {
fill: {{style.iconColor color-8}};
}

.folderLayoutIconFill .stroke-svg, .folderLayoutIconNotFill .stroke-svg{
stroke: {{style.iconColor color-8}};
}

.folderTitle{
{{style.folderIconFont Body-M}};
color : {{style.folderIconColor color-8}};
line-height: 1.4em;
}
.connected-cloud path {
stroke: {{color-8}};
}
.connected-cloud path.fill-connected {
fill: {{color-8}};
}
.connected-cloud--text {
{{Body-M}};
}

.empty-folder--header {
{{Body-L}};
color: {{color-5}};
font-size: 15px;
font-weight: bold;
}

.empty-folder--text {
{{Body-M}};
color: {{color-4}};
font-size: 14px;
}

.empty-folder--image svg g{
fill: {{color-8}} !important;
}
&amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body role="application"&amp;gt;
&amp;lt;div ng-view class="my-app" tabindex="-1" role="main"&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;script src="scripts/bower-index.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script src="scripts/scripts-index.js"&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is a big JSON object which might be relevant as it shows links to dropbox but I am not sure how to make use of that.&lt;/P&gt;&lt;P&gt;Basically being able to enumerate files and folders is what I am trying to achieve in my app. This is what I tried:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;private static void Fetch(string url)
{
using (var webClient = new WebClient())
{
var uri = new Uri(url);
//webClient.OpenReadCompleted += WebClient_OpenReadCompleted;
//webClient.OpenReadAsync(uri);
webClient.DownloadFileAsync(uri, @"D:\xyz.dat");
}
}

private static void WebClient_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
using(StreamReader reader=new StreamReader(e.Result))
{
Console.WriteLine(reader.ReadToEnd());
}
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Feb 2019 04:24:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329157#M479</guid>
      <dc:creator>pankaj_agarwal</dc:creator>
      <dc:date>2019-02-16T04:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329275#M480</link>
      <description>&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Sun, 17 Feb 2019 11:06:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329275#M480</guid>
      <dc:creator>pankaj_agarwal</dc:creator>
      <dc:date>2019-02-17T11:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329619#M482</link>
      <description>&lt;P&gt;The&amp;nbsp;Dropbox URLs in the JSON you mentioned are&amp;nbsp;&lt;A href="https://www.dropbox.com/oauth2/authorize" target="_blank"&gt;https://www.dropbox.com/oauth2/authorize&lt;/A&gt;... and &lt;A href="https://www.dropbox.com/register" target="_blank"&gt;https://www.dropbox.com/register&lt;/A&gt;, which themselves aren't directly related to downloading files. (The former is a page for authorizating an API app, and the latter is the page for registering a&amp;nbsp;Dropbox account.)&lt;/P&gt;
&lt;P&gt;&lt;A href="https://wixlabs---dropbox-folder.appspot.com/index?instance=UexTyTTXTALjKbz1f1P3H5nZAFTiMsLw2wWcu_0uebU.eyJpbnN0YW5jZUlkIjoiNzk4YzZlYTUtMDg5Yi00ZjFlLWI2NzMtOWYxZjA1OTU1YmQ5IiwiYXBwRGVmSWQiOiIxNDkyNDg2NC01NmQ1LWI5NGItMDYwZi1jZDU3YmQxNmNjMjYiLCJtZXRhU2l0ZUlkIjoiYmRkMzFlNjMtY2I5Ny00ZTMxLWI5NGEtMGFhNmI5MzgwYjY3Iiwic2lnbkRhdGUiOiIyMDE4LTEwLTA0VDAwOjE4OjIyLjM5MFoiLCJ1aWQiOm51bGwsInZlbmRvclByb2R1Y3RJZCI6bnVsbCwiZGVtb01vZGUiOmZhbHNlfQ&amp;amp;target=_top&amp;amp;width=576&amp;amp;compId=comp-jmtmo1bb&amp;amp;viewMode=viewer-seo" target="_self"&gt;The link you originally supplied&lt;/A&gt;&amp;nbsp;is to a page on&amp;nbsp;appspot.com, which is an HTML page with a file listing. That listed file also &lt;A href="https://wixlabs---dropbox-folder.appspot.com/dropbox/download?instance=UexTyTTXTALjKbz1f1P3H5nZAFTiMsLw2wWcu_0uebU.eyJpbnN0YW5jZUlkIjoiNzk4YzZlYTUtMDg5Yi00ZjFlLWI2NzMtOWYxZjA1OTU1YmQ5IiwiYXBwRGVmSWQiOiIxNDkyNDg2NC01NmQ1LWI5NGItMDYwZi1jZDU3YmQxNmNjMjYiLCJtZXRhU2l0ZUlkIjoiYmRkMzFlNjMtY2I5Ny00ZTMxLWI5NGEtMGFhNmI5MzgwYjY3Iiwic2lnbkRhdGUiOiIyMDE4LTEwLTA0VDAwOjE4OjIyLjM5MFoiLCJ1aWQiOm51bGwsInZlbmRvclByb2R1Y3RJZCI6bnVsbCwiZGVtb01vZGUiOmZhbHNlfQ&amp;amp;target=_top&amp;amp;width=576&amp;amp;compId=comp-jmtmo1bb&amp;amp;viewMode=viewer-seo&amp;amp;file=%2Fomniscreen%2Fomniscreendesk.exe&amp;amp;token=" target="_self"&gt;links to&amp;nbsp;appspot.com&lt;/A&gt;, but then returns a&amp;nbsp;URL on&amp;nbsp;&lt;A href="https://dl.dropboxusercontent.com/apitl/1" target="_blank"&gt;https://dl.dropboxusercontent.com/apitl/1&lt;/A&gt; (which is a temporary link retrieved from the Dropbox API), resulting in a file download in the browser.&lt;/P&gt;
&lt;P&gt;If you want the file to download to the user's machine, it appears that's already working. If that's not the behavior you want, please elaborate.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2019 15:54:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329619#M482</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-02-19T15:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329755#M485</link>
      <description>&lt;P&gt;Actually I want to check for some files periodically and download them without having to open the browser. The app will sit in the system tray and do the work.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 08:50:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329755#M485</guid>
      <dc:creator>pankaj_agarwal</dc:creator>
      <dc:date>2019-02-20T08:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329788#M486</link>
      <description>&lt;P&gt;My question is how do I get the links to files programmatically.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 12:24:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329788#M486</guid>
      <dc:creator>pankaj_agarwal</dc:creator>
      <dc:date>2019-02-20T12:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329862#M487</link>
      <description>&lt;P&gt;So, if I understand correctly, you want to build a client-side (presumably, Windows) application which will run on the user's computer, and will download files from a pre-existing website like that appspot page, is that correct?&lt;/P&gt;
&lt;P&gt;Getting the links from a web site (i.e., essentially "scraping" that web site), isn't related to&amp;nbsp;Dropbox itself, so I'm afraid I can't offer help with that.&lt;/P&gt;
&lt;P&gt;Once you do get the file link (not the HTML page link), since that is just a publicly accessible link, you can download it using any HTTPS client, such as the `WebClient` you mentioned earlier.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Feb 2019 16:36:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329862#M487</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-02-20T16:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329994#M488</link>
      <description>&lt;P&gt;That's right. Its the links in the html file that I want but I am not sure how because I can't find any. That is all I want to know I can do the rest.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 08:38:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/329994#M488</guid>
      <dc:creator>pankaj_agarwal</dc:creator>
      <dc:date>2019-02-21T08:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the public url to access files</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/330059#M489</link>
      <description>&lt;P&gt;I see, thanks for clarifying. It sounds like you're referring to parsing or scraping&amp;nbsp;the HTML page itself, which is outside the scope of&amp;nbsp;Dropbox API support, so I'm afraid I can't offer help with that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may be better served by referring to general resources on this sort of parsing/scraping on general web development forums.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Feb 2019 16:44:04 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/How-to-use-the-public-url-to-access-files/m-p/330059#M489</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2019-02-21T16:44:04Z</dc:date>
    </item>
  </channel>
</rss>

