Private url for Zip Download
Hi,
I would like my Authenticated users to be able to download a zip of private files.
Is there some kind of equivalent of private_download_url for Zip files ?
Thanks !
-
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')
-
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
Post is closed for comments.
Comments
2 comments