<?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: Timeout for request to Dropbox API in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Timeout-for-request-to-Dropbox-API/m-p/163904#M5801</link>
    <description>&lt;P&gt;Thanks for the speedy reply, Gregory. Hopefully we can get this worked out. Have a great weekend!&lt;/P&gt;
&lt;P&gt;:^)&lt;/P&gt;</description>
    <pubDate>Sat, 16 Jan 2016 10:54:45 GMT</pubDate>
    <dc:creator>James (.</dc:creator>
    <dc:date>2016-01-16T10:54:45Z</dc:date>
    <item>
      <title>Timeout for request to Dropbox API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Timeout-for-request-to-Dropbox-API/m-p/163902#M5799</link>
      <description>&lt;P&gt;A User reported that after logging out of his Dropbox account, he gets this message:&amp;nbsp;"The request to link the app is invalid" . I can't replicate the issue here. I had him do some extra logging but saw nothing in the console that looked odd, expect for multiple occurrences of&amp;nbsp;&lt;EM&gt;&amp;nbsp;timeout for request to &lt;A href="https://api.dropbox.com/1/fileops/move" rel="nofollow noreferrer" target="_blank"&gt;https://api.dropbox.com/1/fileops/move&lt;/A&gt;, retrying after 1 seconds&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;I can't say it's related to the issue or not (though I'm guessing, not).&lt;/P&gt;
&lt;P&gt;Note: I am not the Sync developer. I am Customer Support. I am not looking to point fingers, but am trying to gather info to explain to my Users what the problem is and whether it's transient / inherent and if it's fixable or not.&lt;/P&gt;
&lt;P&gt;Thanks (from Support to Support),&lt;/P&gt;
&lt;P&gt;Jim Neumann&lt;/P&gt;
&lt;P&gt;BLUEFROG&lt;/P&gt;
&lt;P&gt;DEVONtechnologies, LLC&lt;/P&gt;
&lt;P&gt;(Note: I had a least one other ticket with timeouts like this. It sounds like a problem on his network or responses from your server. I appreciate any insight on this. Thanks.)&lt;/P&gt;
&lt;P&gt;PS: I'm not sure this is in the correct place. It appeared to be for posting on the Developer Forums. Apologies if I'm in the wrong spot.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:36:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Timeout-for-request-to-Dropbox-API/m-p/163902#M5799</guid>
      <dc:creator>James (.</dc:creator>
      <dc:date>2019-05-29T09:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Timeout for request to Dropbox API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Timeout-for-request-to-Dropbox-API/m-p/163903#M5800</link>
      <description>&lt;P&gt;Hi Jim, there are definitely two different issues here, so I'll address them separately. (They're both to do with the&amp;nbsp;Dropbox Developer Platform though so this is a correct place to ask for help.)&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp;The error "The request to link the app is invalid" occurs on the /oauth/authorize step of the OAuth 1 app authorization flow:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/core/docs#authorize" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/core/docs#authorize&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;This error should indicate that the 'oauth_token' parameter is missing or invalid. For example, the following URLs will display this error:&lt;/P&gt;
&lt;P&gt;- because there is no 'oauth_token' parameter: &lt;BR /&gt;&lt;A href="https://www.dropbox.com/1/oauth/authorize" rel="nofollow noreferrer"&gt;https://www.dropbox.com/1/oauth/authorize&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- because the 'oauth_token' parameter contains an invalid request token: &lt;BR /&gt;&lt;A href="https://www.dropbox.com/1/oauth/authorize?oauth_token=notarealrequesttoken" rel="nofollow noreferrer"&gt;https://www.dropbox.com/1/oauth/authorize?oauth_token=notarealrequesttoken&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The 'oauth_token' parameter needs to contain a valid request token retrieved from /oauth/request_token:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/core/docs#request-token" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/core/docs#request-token&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;To investigate that issue, the first step would be to get a sample URL of the /oauth/authorize page that produces that error. (I believe a redirect happens with that error though, so make sure to get the original&amp;nbsp;/oauth/authorize URL, not the redirected /home URL.)&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp;The "timeout for request to ... /files/move" issue sounds unrelated, as that's an entirely different endpoint.&amp;nbsp;As you said, it is possible it's due to his network connection (or anything that may be interfering with it) or possibly an issue on our servers. If it's transient and not reproducible, it's likely the former. The best practice for API apps is to do some automatic retrying anyway, since there are plenty of ways for things to fail like that, due to network conditions, etc. If it's reliably reproducible though, and other API calls don't fail, that would indicate an issue on our side. In that case, if you could share steps to reproduce the issue and a sample request/response, we can look into it. (Just be sure to redact any secret values, e.g., the access token.) You can also open an API ticket if you'd prefer to share privately:&amp;nbsp;&lt;A href="https://www.dropbox.com/developers/contact" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/contact&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2016 10:39:44 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Timeout-for-request-to-Dropbox-API/m-p/163903#M5800</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-01-16T10:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Timeout for request to Dropbox API</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Timeout-for-request-to-Dropbox-API/m-p/163904#M5801</link>
      <description>&lt;P&gt;Thanks for the speedy reply, Gregory. Hopefully we can get this worked out. Have a great weekend!&lt;/P&gt;
&lt;P&gt;:^)&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2016 10:54:45 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Timeout-for-request-to-Dropbox-API/m-p/163904#M5801</guid>
      <dc:creator>James (.</dc:creator>
      <dc:date>2016-01-16T10:54:45Z</dc:date>
    </item>
  </channel>
</rss>

