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.

How to fetch hundreds of images from Cloudinary?

Comments

4 comments

  • Avatar
    Eric Pasos

    Hi Toma,

    You can use the original filename of the asset without appending any random characters by using the upload method parameters: use_filename:true & unique_filename:false (see more information here).

    In the case that you want random public_id together with appending random characters, you can retrieve all your assets by using the resource list, as described in this link. And using the JSON data, you can parse and get the delivery URL of the different images that you want to display. Alternatively, you can also manage your assets using tags or by folder, and then use the Search API based on certain categories needed for your use case implementations (see sample in this link).

    Hope this helps.

    1
    Comment actions Permalink
  • Avatar
    Toma

    Thanks Eric, this helps! 

    I was wondering if there was an option to remove random characters at the end when manually uploading images in the media library (from the website). What is the reason Cloudinary appends random characters? Does it have something to do with caching assets? I'd rather keep them if it's important.

     

    0
    Comment actions Permalink
  • Avatar
    Thomas Gurung

    Hi Toma,

    Thanks for getting back. 

    The random characters are appended so if you accidentally upload an asset with the same name, it doesn't get overwritten. 

    You can remove random characters whilst uploading from the DAM UI. So first create a singed upload preset per this link and then per Eric's update make sure that `use_filename:true` & `unique_filename:false` are set in the `Storage and access` tab. 

    Finally once the preset is created, set it as the default for the required asset types under `Media library's upload presets` so it will only get used via the DAM UI.

    You can also specify what preset to use via the widget that appears when the upload button is clicked but we will need to enable this feature for you so let us if you'd like this by providing your cloud name via a direct ticket .

    Kind Regards,
    Thomas

     

    1
    Comment actions Permalink
  • Avatar
    Toma

    Thanks for the response! Things are clear now.

    0
    Comment actions Permalink

Post is closed for comments.