You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.

Forum Discussion

Bk13's avatar
Bk13
Explorer | Level 4
4 months ago

Webhook is disabled once in a few days

Hello, we have set up a webhook in our developer app and the webhook works fine and as expected, however it seems that once in a few days the app is disabled for unknown reason, we don`t see any exceptions in the logs or in the dropbox app console, we have also added a try catch phrase inside our webhook code so it always returns 200 even if our logic fails, we also didn`t find an exception in our logs so the logic doesn`t seem to fail.

what could cause the webhook to disable?

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Staff rankDropbox Staff

    Bk13 If Dropbox is repeatedly unable to successfully deliver webhook notifications to your webhook URI server, it will stop attempting to do so. At that point, your webhook URI will be disabled, you will be notified of this by email, and no further webhook notifications will be sent until the webhook URI is re-enabled. You should be able see any available error information, though only while the webhook URI is failing, on the app's page on the App Console.

     

    As Здравко said, be careful how you manage your webhook URI handler; the Dropbox servers expect the response to be returned quickly. You can find more information in the Webhooks documentation.

     

    Additionally, if there are any network issues preventing the request from reaching your server, that would also be considered a failure, and you wouldn't necessarily see exceptions from your code, so you may want to check with your network admin for any potential network issues.

  • Здравко's avatar
    Здравко
    Legendary | Level 20

    Bk13 wrote:

    ..., we have also added a try catch phrase inside our webhook code so it always returns 200 even if our logic fails, ...


    Hi Bk13,

    It's a mistake even to think in that direction! You logic should be executed after the web handler returned. A delay may trigger fault on Dropbox side even when you return status 200. Restructure your code and make it async.

    Hope this gives direction.

  • tiffanywalkEr's avatar
    tiffanywalkEr
    Explorer | Level 4
     

    Providers like Dropbox might disable webhooks for reasons like too many requests too quickly, security problems, or issues with how data is sent. Make sure to read the webhook instructions and follow all rules from the provider to avoid this.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback

Find help with the Dropbox API from other developers.

5,877 PostsLatest Activity: 10 minutes ago
326 Following

If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.

For more info on available support options for your Dropbox plan, see this article.

If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!