-
cloudinary api is not working in development
as i was implementing the cloudinary. follwowing the documentation provided by the cloudinary am getting 500 interanlserver errror?,few minute ago it was perfectly working fine. 2nd Query so cloudinary has a default Home folder. if i create another folder why does it automatically be subfolder of Home? how can i make my…
-
How can I check for existence of an uploaded file
Essentially I am using hash based system and before a file is uploaded, I want to check whether it exists based on the hash - which is set as the filename. I am using NodeJS and I have the following options, use_filename: true, unique_filename: false, filename_override: hashed_name. Basically, I want to check for the…
-
Cloudinary image upload error
I am making the project where i am using cloudinary for image upload. But there is some problem with it, whenever i try to upload the image through my project, it shows me the error:- Error during image upload to Cloudinary: { error: { message: 'Request Timeout', http_code: 499, name: 'TimeoutError' } } Earlier, this issue…
-
Transformation : Blur doesn't work, everytime time out by Make
Hi, I have a problem with Cloudinary, i can't transform my vidéo with any kind of blur, all my request are timeout by Make (Integromat). Someone know what is going on or have a solution for that ?
-
How can i adjust which folder my images upload to in nextjs using CldUploadButton
I'm Stumped with the nextjs docs. i know how to do this with react/express using multers and node, but is there a way to just use the next component to adjust to a dynamic folder so i can have users upload to a folder with their id as the folder name? I have an unsigned upload preset which uploads to a root folder called…
-
How to get private image using public id with Admin API?
Hello, I am using signed uploads, which means my backend generates parameters, including a public id, and a signed signature for the frontend to use to upload an image. Some of the images that are uploaded have type = private. On my backend, I query Cloudinary for the images that the backend has generated a signature for…
-
signed video upload in rust returns "Invalid Signature"
I tried uploading a video to a Rust backend using Signed Upload. However, creating a signed upload using the API according to this documentation keeps returning an error saying "Invalid Signature". I suspected it might be a hashing problem and tried it in another language using the same logic as in my Rust code. The…
-
NextJS 14 Image upload with Server actions.
Hi there folks.I've had some struggle with getting my code working in NextJS with Server actions and TypeScript. Now that I solved it. I would like to share my code in case somebody else stumbled upon the same problem. Lets first start with the page.tsx. I use Shadcn for my forms and custom hooks for passing some props to…
-
Where can I find images that were rejected by AWS Rekognition AI Moderation?
According to the Automatic image moderation flow documentation, rejected images are available for restoration: A rejected image does not appear in your media library, but is backed up, consuming storage, so that it can be restored if necessary. I have uploaded an image that got rejected by AWS Rekognition but I cannot find…
-
413 Request Entity Too Large on Production but it uploads on Local server
this is my code public function upload(Request $request) { $folder = 'product_photo'; if ($request->hasFile('photo')) { $file = $request->file('photo'); request()->validate([ 'photo' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:6048', ]); $cloudinaryResponse = Cloudinary::upload($file->getRealPath(), [ 'folder' =>…
-
upload path
I am tryin to get an image upload to Cloudinary. The following code is what I am using: foreach (var file in args.Files) { var path = @"https://res.cloudinary.com/dtm6vdbf7/image/upload/" + file.FileInfo.Name; FileStream filestream = new FileStream(path, FileMode.Create, FileAccess.Write); await…
-
Failing to send more than one image in Cloudinary
Hi, im using the following code to send a array of images to cloudinary, but the code is always sending the last image, even though all console.logs shows all the images:
-
upload subfolders
Hi, how are you? It would be a question, I have a product project in NextJs and I wanted to know that I can make each product have its specific mass when it is created. For example: cellular products/cell01 cellular products/cell02 In this case, it would retrieve the product slug and create the subfolder using the product…
-
Getting Error: Must supply api_key
This is my config import { v2 as cloudinary } from "cloudinary"; import fs from "fs"; cloudinary.config({ cloud_name: process.env.CLOUDINARY_CLOUD_NAME, api_key: process.env.CLOUDINARY_API_KEY, api_secret: process.env.CLOUDINARY_API_SECRET,}); console.log("CLOUDINARY_API_KEY", process.env.CLOUDINARY_API_KEY); This prints…
-
How to set access_control with Windows CLI?
Hello! I am trying to upload an asset and set the access_control to token. However, I can't seem to get the formatting right on the command. call cld uploader upload 1.png -o use_filename true -o access_control '[{"access_type": "token"}]' error: upload() takes 1 positional argument but 2 were given It seems to be an issue…