<?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: c# Files.DownloadZipAsync, how do I get link from this Api call? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285558#M17495</link>
    <description>The ability to create a blob URL is something native to browsers. You're writing in C#/.NET, outside of a browser, so this will work very differently.&lt;BR /&gt;&lt;BR /&gt;Exactly how you do something like that will also depend on your scenario. For example, since you're building a web app, you can use your web framework to make the data available at some URL. That's outside of what I can help with as Dropbox API support, so I recommend referring to the documentation for the web framework that you're using.</description>
    <pubDate>Fri, 20 Jul 2018 13:41:25 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2018-07-20T13:41:25Z</dc:date>
    <item>
      <title>c# Files.DownloadZipAsync, how do I get link from this Api call?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285398#M17476</link>
      <description>&lt;P&gt;When I call this API endpoint "Api.Files.DownloadZipAsync", why am I not getting any link to the zip file?&lt;/P&gt;&lt;P&gt;Instead I am getting name,&amp;nbsp;path_lower, path_display, id.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I run it on the API explorer, it formed a link in the button below ... something like "blob:&lt;A href="https://dropbox.github.io/e05a95ca-8ff7-473b-93ec-b339db391dde" target="_blank"&gt;https://dropbox.github.io/e05a95ca-8ff7-473b-93ec-b339db391dde&lt;/A&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I form this download link?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I doing something wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my code snippet&lt;/P&gt;&lt;PRE&gt;using (var dbx = new DropboxClient(token))
{
     zipdownload = await dbx.Files.DownloadZipAsync("/fr_test");
}&lt;/PRE&gt;</description>
      <pubDate>Wed, 29 May 2019 09:11:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285398#M17476</guid>
      <dc:creator>frphotos</dc:creator>
      <dc:date>2019-05-29T09:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: c# Files.DownloadZipAsync, how do I get link from this Api call?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285419#M17484</link>
      <description>&lt;P&gt;The&amp;nbsp;DownloadZipAsync method will return the zip data directly to your app. It does not itself return a link to the data. You can have your app do whatever you want with it (e.g., serve it back to the user, save it locally, etc.). You can find an example of accessing the data here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/23b85606c92fc05fc1e6a2da4c6d10662b0c8683/dropbox-sdk-dotnet/Examples/SimpleTest/Program.cs#L369" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-dotnet/blob/23b85606c92fc05fc1e6a2da4c6d10662b0c8683/dropbox-sdk-dotnet/Examples/SimpleTest/Program.cs#L369&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(That's an example of using&amp;nbsp;DownloadAsync, but accessing the data works the same way for&amp;nbsp;DownloadZipAsync.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The API v2 Explorer, for instance, takes the returned zip data, and makes it available to the user via a blob URL directly in the browser. This isn't part of the API itself, but rather just something implemented in the API v2 Explorer itself as a convenience to developers using it to test the API.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 13:31:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285419#M17484</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-07-19T13:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: c# Files.DownloadZipAsync, how do I get link from this Api call?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285508#M17490</link>
      <description>&lt;P&gt;A quick question, I am using this Files.DownloadZipAsync inside a web application.&lt;BR /&gt;Once I obtain the data from "await response.GetContentAsStringAsync();"&lt;BR /&gt;How do I convert the stream data to be a physical url link like how the API v2 Explorer did via a blob URL?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any leads to an example or method resources would be great.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jul 2018 05:07:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285508#M17490</guid>
      <dc:creator>frphotos</dc:creator>
      <dc:date>2018-07-20T05:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: c# Files.DownloadZipAsync, how do I get link from this Api call?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285558#M17495</link>
      <description>The ability to create a blob URL is something native to browsers. You're writing in C#/.NET, outside of a browser, so this will work very differently.&lt;BR /&gt;&lt;BR /&gt;Exactly how you do something like that will also depend on your scenario. For example, since you're building a web app, you can use your web framework to make the data available at some URL. That's outside of what I can help with as Dropbox API support, so I recommend referring to the documentation for the web framework that you're using.</description>
      <pubDate>Fri, 20 Jul 2018 13:41:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/c-Files-DownloadZipAsync-how-do-I-get-link-from-this-Api-call/m-p/285558#M17495</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-07-20T13:41:25Z</dc:date>
    </item>
  </channel>
</rss>

