Forum Discussion

gcx's avatar
gcx
New member | Level 2
6 years ago
Solved

Error 409 with download_zip on shared link subfolders

I am receiving HTTP error 409 when using https://content.dropboxapi.com/2/files/download_zip.

I am using the folderIDs gathered from files_list_folder, based on a shared link.

The below is how I am forming my POST (in Python):

def download_zip(folder_id):
    url     = 'https://content.dropboxapi.com/2/files/download_zip'
    
    headers = {
        'Authorization': 'Bearer ' + token,
        'Dropbox-API-Arg': "{" + '''"path"''' + ":"  + '''"''' + folder_id   + '''"''' + "}"
    }

    res = requests.post(url, headers=headers)
    print(res)

A sample of a given header: 

{'Authorization': 'Bearer <MyKey>', 'Dropbox-API-Arg': '{"path":"id:DH1fqZncI8AAAAAAAAPgQA"}'}

Any help on how I can get the zip download to work on shared links would be appreciated. Thank you!

 

  • First, for reference, whenever you get an error from the Dropbox API, be sure to print out the response body as it may contain a more useful error message.

    Anyway, unfortunately, the Dropbox API does not currently support getting a zip download of a subfolder based on the id of the subfolder returned from listing the shared link like this (unless the connected account happens to contain the folder anyway). I'll pass this along as a feature request, but I can't promise if or when that might be implemented. 

    Note that you can download the top-level folder as a zip from the shared link as documented here, but that doesn't provide a mechanism for downloading a specific subfolder.

2 Replies

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

    First, for reference, whenever you get an error from the Dropbox API, be sure to print out the response body as it may contain a more useful error message.

    Anyway, unfortunately, the Dropbox API does not currently support getting a zip download of a subfolder based on the id of the subfolder returned from listing the shared link like this (unless the connected account happens to contain the folder anyway). I'll pass this along as a feature request, but I can't promise if or when that might be implemented. 

    Note that you can download the top-level folder as a zip from the shared link as documented here, but that doesn't provide a mechanism for downloading a specific subfolder.

  • gcx's avatar
    gcx
    New member | Level 2
    6 years ago

    Many thanks for your reply Greg. 

    I had attempted to print the err message body but didn't find any content for this case. 

    I'm glad to know this is a feature limitation rather than a bug or user error. If you could indeed pass this along as a feature request I'd appreciate it.

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!