Need to see if your shared folder is taking up space on your dropbox 👨‍💻? Find out how to check here.

Forum Discussion

Ashley B.15's avatar
Ashley B.15
Helpful | Level 7
10 years ago
Solved

The remote server returned an error: (414) Request-URI Too Large.

I'm using the current end point to retrieve a users folders and files:

https://www.dropbox.com/developers-v1/core/docs#delta

 

I get the following error The remote server returned an error: (414) Request-URI Too Large. the cursor returned from the end point is 31279 characters in length the entries count: 2000 I've tried to reproduce this but can't Do you know why this might be occuring ?

 

Thanks

  • Hi Ashley, the cursor can get very large like this when the account has many shared folders. The 414 error indicates that the URI (including the parameters, in this case, the long cursor) is too long to be processed.

     

    Instead, you can include the parameters in the body of the API call, not on the URI itelf. For example, in curl, that would mean instead of doing something like this:

     

    curl -X "POST" "https://api.dropboxapi.com/1/delta?cursor=CURSOR_HERE" \
        -H "Authorization: Bearer ACCESS_TOKEN_HERE"

    you would do something like this:

     

     

    curl -X "POST" "https://api.dropboxapi.com/1/delta" \
        -H "Authorization: Bearer ACCESS_TOKEN_HERE" \
        --data "cursor=CURSOR_HERE"
    

    (Also, I should note that API v1 is deprecated, so we recommend migrating to API v2 as soon as possible.)

     

     

4 Replies

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    10 years ago

    Hi Ashley, the cursor can get very large like this when the account has many shared folders. The 414 error indicates that the URI (including the parameters, in this case, the long cursor) is too long to be processed.

     

    Instead, you can include the parameters in the body of the API call, not on the URI itelf. For example, in curl, that would mean instead of doing something like this:

     

    curl -X "POST" "https://api.dropboxapi.com/1/delta?cursor=CURSOR_HERE" \
        -H "Authorization: Bearer ACCESS_TOKEN_HERE"

    you would do something like this:

     

     

    curl -X "POST" "https://api.dropboxapi.com/1/delta" \
        -H "Authorization: Bearer ACCESS_TOKEN_HERE" \
        --data "cursor=CURSOR_HERE"
    

    (Also, I should note that API v1 is deprecated, so we recommend migrating to API v2 as soon as possible.)

     

     

  • Greg-DB's avatar
    Greg-DB
    Icon for Dropbox Community Moderator rankDropbox Community Moderator
    10 years ago
    In API v1, /delta is preferred for listing all files and folders.

About Dropbox API Support & Feedback

Node avatar for Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.

The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.

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, Facebook or Instagram.

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!