<?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: SaveUrl no longer detects dropbox full in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189895#M8156</link>
    <description>&lt;P&gt;Thanks for the additional information Larry. Is the looped version of your code any different than the above, beyond directly placing it in a for loop?&lt;/P&gt;
&lt;P&gt;Also, if you could let me know how/when you're checking the space usage such that you expect it to fail, that would be useful. (Users may always be changing things in their accounts, which can put them over or under their quota usage at any point in time.) Is it happening for specific users in particular?&amp;nbsp;Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Sep 2016 06:05:46 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2016-09-20T06:05:46Z</dc:date>
    <item>
      <title>SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189891#M8152</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;The&amp;nbsp;SaveUrlAsync behavior has changed recently such that it no longer thows a SaveUrlError exception when a user's dropbox is full. &amp;nbsp; Why was this changed? &amp;nbsp;We were relying on this to detect that the user's dropbox is full.&lt;/P&gt;
&lt;P&gt;Thank You,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Larry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:29:58 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189891#M8152</guid>
      <dc:creator>Getty I.</dc:creator>
      <dc:date>2019-05-29T09:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189892#M8153</link>
      <description>&lt;P&gt;Actually, this just worked for me but it's inconsistent. &amp;nbsp;It does not always throw the SaveUrlError. &amp;nbsp; Do you know why I don't always get s SaveUrlError when calling SaveUrlAsync and when the user's dropbox is full?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 01:38:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189892#M8153</guid>
      <dc:creator>Getty I.</dc:creator>
      <dc:date>2016-09-20T01:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189893#M8154</link>
      <description>&lt;P&gt;Hi Larry, I just tried this out on an account that is over quota and it does seem to be giving me the error consistently.&lt;/P&gt;
&lt;P&gt;When you see this work not as expected, are you seeing the save operation succeed? If so, how/when were you checking the quota such that you expected the operation to fail?&amp;nbsp;Any other steps/details you can offer to help us reproduce this would be helpful.&amp;nbsp;Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 03:58:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189893#M8154</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-09-20T03:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189894#M8155</link>
      <description>&lt;P&gt;Hi Gregory, Thank you for getting back to me. &amp;nbsp;What I've noticed is that, if I call SaveUrlAsync in a loop, each call provides me with a job id instead of throwing an exception. &amp;nbsp;In each call to SaveUrlAsync, we are uploading a different file. &amp;nbsp;However, when I just make one call on it's own, SaveUrlAsync will throw the ApiException as expected and which contains the error telling us the that dropbox is full.&lt;/P&gt;
&lt;P&gt;Thank You,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Larry&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is a sample code snippet: &amp;nbsp;&lt;/P&gt;
&lt;P&gt;using (var dbx = new DropboxClient(accessToken))&lt;BR /&gt; {&lt;BR /&gt; try&lt;BR /&gt; {&lt;BR /&gt; var response = await dbx.Files.SaveUrlAsync(file, url );&lt;BR /&gt; var jobId = response.AsAsyncJobId.Value;&lt;BR /&gt; return new SaveUrlResponse {async_job_id = jobId};&lt;BR /&gt; }&lt;BR /&gt; catch (ApiException&amp;lt;SaveUrlError&amp;gt; ex)&lt;BR /&gt; {&lt;BR /&gt; }&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 04:12:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189894#M8155</guid>
      <dc:creator>Getty I.</dc:creator>
      <dc:date>2016-09-20T04:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189895#M8156</link>
      <description>&lt;P&gt;Thanks for the additional information Larry. Is the looped version of your code any different than the above, beyond directly placing it in a for loop?&lt;/P&gt;
&lt;P&gt;Also, if you could let me know how/when you're checking the space usage such that you expect it to fail, that would be useful. (Users may always be changing things in their accounts, which can put them over or under their quota usage at any point in time.) Is it happening for specific users in particular?&amp;nbsp;Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 06:05:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189895#M8156</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-09-20T06:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189896#M8157</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;You are right. &amp;nbsp;The looped version is the same code above that calls the sdk, but wrapped in a for loop. &amp;nbsp;To test the functionality, I have a dropbox account that I have filled up. &amp;nbsp;I'm using the access token of that dropbox account. &amp;nbsp;If I call&amp;nbsp;&lt;A href="https://api.dropboxapi.com/2/files/save_url%C2%A0I" rel="nofollow noreferrer"&gt;https://api.dropboxapi.com/2/files/save_url&amp;nbsp;I&lt;/A&gt; get the appropriate error response of insufficient space. &amp;nbsp;So, we know for sure that the account is full.&lt;/P&gt;
&lt;P&gt;Also, a little more information. &amp;nbsp;When saveurlasync doesn't throw a saveurl error, it gives me a job id. When I check the status of the job id, I do get the appropriate error. &amp;nbsp; It's just that the initial saveurlasync call isn't throwing the ApiException. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 06:16:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189896#M8157</guid>
      <dc:creator>Getty I.</dc:creator>
      <dc:date>2016-09-20T06:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189897#M8158</link>
      <description>&lt;P&gt;Thanks! I still can't seem to reproduce this though. Please &lt;A href="https://www.dropbox.com/developers/contact" target="_blank" rel="nofollow noreferrer"&gt;open an API ticket&lt;/A&gt; with the&amp;nbsp;account ID and the output you're getting so we can look into it specifically.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 06:27:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189897#M8158</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-09-20T06:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: SaveUrl no longer detects dropbox full</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189898#M8159</link>
      <description>&lt;P&gt;Will do. &amp;nbsp;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2016 06:33:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/SaveUrl-no-longer-detects-dropbox-full/m-p/189898#M8159</guid>
      <dc:creator>Getty I.</dc:creator>
      <dc:date>2016-09-20T06:33:54Z</dc:date>
    </item>
  </channel>
</rss>

