-
Unable to query my Product Environment
I'm using nodejs sdk, and I have this simple config in my project: cloudinary.config ({ cloud_name: "testname", api_key: "11223344556677", api_secret: "h64hsh6wh7whs", secure: true, analytics: false, hide_sensitive: true }) const result = await cloudinary.api .resources() .then(result=> console.log(result)); But I'm…
-
Rendered image dimensions don't seem to match sizes attribute?
Hi, I'm building a website using Next.js and serving images using Cloudinary. I am using the next/image component and can see the srcset of 16, 32, 48, 64, 96, 128, 256, 384, 640w... in my rendered image's attributes. I am using g_auto,f_auto,c_fill,w_XXX,q_auto:best. I'd like to know why the returned intrinsic size…
-
How to get random images from a folder
I am making something like a social media website, using cloudinary to store user avatars and other images when a user dont want to upload a profile pic, i want the default profile avatar to be choosen randomly from a folder in which i have uploaded some cool random avatars it is possible ? maybe a get request that will…
-
search API subfolder
Hi! I am new to Cloudinary so bear with me... Right now the following code grabs all of my Cloudinary media, but I just need assets from a folder/subfolder. How can I specifically grab assets within a particular folder using the Cloudinary search API? Thanks! const results = (await cloudinary.v2.search…
-
Unable to upload long base64 url via API
Hi Community! I'm unable to Upload my long base64 url via API. How can I do so? I even URL escaped it, but nothing Changed.
-
Deleting empty folders across 23000 folders
I have my assets grouped 9 per asset folder and some 23,000 asset folders. I want to delete any asset folder which contains no assets. I have developed a purge utility which recursively traverses the asset folders and does what I need. HOWEVER when I run this in my production environment it hit the 5000 calls/h limit once…
-
Is there a way to customize the background color of the Product Gallery widget?
After reading the api reference for the widget, it doesn't seem like there is an option, but I wanted to check since some other widgets do in fact have that option.
-
How do I get metadata ( width and height) of a cloudinary resource in Django
I'm using cloudinaryfield to upload images and videos in my app. I need a way to get the width abd height of the images abd videos uploaded. I can't find any attribute on CloudinaryResource class that can help. And calling the api for the metadata makes my server slow and I get rate limited. Does cloudinaryfield store the…
-
how to upload png with transparent background to cloudinary
I am trying to upload a png image with transparent background to cloudinary using nodejs application The image is in png format i.e. logo.png. I am using multer to get the image convert into buffer before uploading the image. But when I upload the image the transparent background changes to a white background. The response…
-
Subject: Urgent Assistance Needed - Cloudinary Account Disabled, Media Access Critical
Dear Cloudinary Support Team, I hope this message finds you well. My name is Guney, and I am writing on behalf of kirklareligazetesi.com.tr. We are currently facing a critical issue with our Cloudinary accounts, and I urgently seek your assistance to resolve this matter. Our Cloudinary account with the username "[REDACTED…
-
Strapi - Cloudinary image upload, Request Timeout error
When i Use Cloudinary with Strapi (using @strapi/provider-upload-cloudinary version 4.16.2 and Strapi v4.16.2 and Node 20.9.0 ) I am not able to upload Images. I get a Request Timeout error. I tried playing with the timeout parameter on my side but it doesn't help. I get http: POST /upload (5478 ms) 500 status (similar…
-
Problem uploading files, Timeout and Callback is not a function
Hello Everyone, I've been using Cloudinary for some times now, and up until yesterday everything was perfectly smooth and running. However this morning i tried to upload an image ( working on loading state) and i've seen that it wasn't working anymore. At first i had a 499 Error timeout, and after looking on internet i've…
-
Learn How to Build a Dynamic Conference Badge Generator with Cloudinary
Hey everybody! We have a DevJams live stream this Friday! You can watch on LinkedIn and YouTube. Join us in this episode as we chat with Amy Dutton about her incredible project - a dynamic badge generator for the RedwoodJS Conference. Amy shares her story into tech, her current role in the RedwoodJS core team, and the…
-
How to delete a image?
https://res.cloudinary.com/dc2z2c3u8/image/upload/v1704056782/uploaded-images/Screenshot%202023-12-31%20at%205.39.20%20PM.png.png I need to delete this image cloudinary.uploader.destroy( `image/upload/v1704056782/uploaded-images/Screenshot%202023-12-31%20at%205.39.20%20PM.png.png`, { invalidate: true, resource_type:…
-
ActiveStorage: use public url?
I'm using Cloudinary as an ActiveStorage store for ActionText in Rails 6.1, cloudinary gem v1.28. Instead of the local signed URL I'd like to have it use the direct URL to Cloudinary. In the ActiveStorage documentation, there is the concept of setting a public flag in storage.yml: cloudinary: service: Cloudinary public:…