<?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: The check API always returns Internal_error in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275523#M16460</link>
    <description>&lt;P&gt;Yes, sorry. Just realized it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Tue, 08 May 2018 18:28:37 GMT</pubDate>
    <dc:creator>nickbrit</dc:creator>
    <dc:date>2018-05-08T18:28:37Z</dc:date>
    <item>
      <title>The check API always returns Internal_error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275517#M16456</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://api.dropboxapi.com/2/files/copy_batch/check" target="_blank"&gt;https://api.dropboxapi.com/2/files/copy_batch/check&lt;/A&gt; always returns `Internal_error` for me.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The documentation says `This should happen very rarely`.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is it something on my end?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:13:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275517#M16456</guid>
      <dc:creator>nickbrit</dc:creator>
      <dc:date>2019-05-29T09:13:24Z</dc:date>
    </item>
    <item>
      <title>Re: The check API always returns Internal_error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275519#M16457</link>
      <description>To clarify, are you seeing this consistently for a particular job ID, or for multiple different job IDs?&lt;BR /&gt;&lt;BR /&gt;Once you get `internal_error` for a particular job ID, you should stop checking the job status, as it won't change for that job ID. The `internal_error` failure should be considered permanent, so you need to try to re-run the copy_batch operation itself.&lt;BR /&gt;&lt;BR /&gt;If you're getting this consistently across multiple jobs, please share the code you're using, as well as a few sample job IDs, so we can look into it for you.</description>
      <pubDate>Tue, 08 May 2018 18:03:44 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275519#M16457</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-05-08T18:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: The check API always returns Internal_error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275520#M16458</link>
      <description>&lt;P&gt;I'm using Javascript SDK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;dbx.filesUploadSessionStart({ close: close, contents: toUpload }).then((response) =&amp;gt; {
                this.entries.push({
                    cursor: {
                        session_id: response.session_id,
                        offset: 0
                    },
                    "commit": {
                        'path': this.path + '/' + toUpload.name,
                        'mode': 'add',
                        'mute': false
                    }
                })
                resolve(response);
});&lt;/PRE&gt;&lt;P&gt;I run it twice, for exmple. First time close is `false`, the second one is `true`.&lt;/P&gt;&lt;P&gt;And I call `&lt;SPAN&gt;/upload_session/finish_batch&lt;/SPAN&gt;`:&lt;/P&gt;&lt;PRE&gt;dbx.filesUploadSessionFinishBatch({ 'entries': this.entries}).then((response) =&amp;gt; {
    ...
});&lt;/PRE&gt;&lt;P&gt;And I call `check` with `async_job_id`:&lt;/P&gt;&lt;PRE&gt;dbx.filesCopyBatchCheck({ 'async_job_id': async_job_id })&lt;/PRE&gt;&lt;P&gt;Frist time it returns `in progress`, second time it returns `Internal_error`&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 18:11:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275520#M16458</guid>
      <dc:creator>nickbrit</dc:creator>
      <dc:date>2018-05-08T18:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: The check API always returns Internal_error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275522#M16459</link>
      <description>Thanks! I see you're running a filesUploadSessionFinishBatch job, but are trying to check it using filesCopyBatchCheck. For filesUploadSessionFinishBatch jobs, you should use filesUploadSessionFinishBatchCheck to check it:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionFinishBatchCheck__anchor" target="_blank"&gt;https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#filesUploadSessionFinishBatchCheck__anchor&lt;/A&gt;</description>
      <pubDate>Tue, 08 May 2018 18:18:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275522#M16459</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-05-08T18:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: The check API always returns Internal_error</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275523#M16460</link>
      <description>&lt;P&gt;Yes, sorry. Just realized it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 18:28:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/The-check-API-always-returns-Internal-error/m-p/275523#M16460</guid>
      <dc:creator>nickbrit</dc:creator>
      <dc:date>2018-05-08T18:28:37Z</dc:date>
    </item>
  </channel>
</rss>

