This support forum is no longer in use. Please use the Cloudinary Community at https://community.cloudinary.com/ to receive assistance from other members of the community and from Cloudinary's support team. For account-specific questions or if you believe that you've encountered a bug, please contact the Cloudinary team directly via the "submit a request" option on this support site.

Private url for Zip Download

Comments

2 comments

  • Avatar
    Roee Ben Ari

    You can indeed download all your private images into a zip file. This can be done using our multi API. First, you will have to use the Admin API to browse through your resources and list all your private images. Then you'll have to loop through this list and add a tag to each of the resources. For example:

    Cloudinary::Uploader.add_tag(my_private_list, ["my_tag"]) 
    

    Lastly, you'll have to use the Multi API to generate the zip file of all the images sharing the tag you assigned. For example:

    Cloudinary::Uploader.multi("my_tag", :format => 'zip') 
    
    0
    Comment actions Permalink
  • Avatar
    Nadav Ofir

    Hi, we have recently added support to a new & enhanced API for archive generating/downloading including time expiring URLs.
    For more information see: http://cloudinary.com/blog/dynamically_generating_zip_files_with_one_line_of_code

    0
    Comment actions Permalink

Post is closed for comments.