Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
56 views

I’m using Cloudinary to upload documents (PDFs, ZIPs, etc.) from my Next.js app. The upload succeeds, but when I try to access the file via URL like: In the Cloudinary Media Library, it says: Access ...
Kenil Mangukiya's user avatar
0 votes
1 answer
82 views

I have been trying to get access to an image I uploaded to Cloudinary and later made it restricted. The method I want to use is using it's URL but for some reason no URL works and it's documentation ...
TheSpy181's user avatar
0 votes
1 answer
45 views

I'm using Cloudinary SDK v2 in a Next.js (Node.js) API route. When running locally it works fine, but after deploying to Vercel I get this error: Must supply sdk_semver I searched extensively but ...
lauti's user avatar
  • 2
3 votes
1 answer
62 views

Is it possible to write a Plotly chart directly into Cloudanary without first saving to a file? So Plotly is something like this. fig.write_image("fig1.png") I want to upload the fig ...
diogenes's user avatar
  • 2,191
2 votes
2 answers
209 views

I am working on django project. It is working fine with local storage and decided to use cloudinary for media storage then for some reason the file storage is not changing to cloudinary media storage. ...
NoName's user avatar
  • 21
0 votes
1 answer
54 views

I keep running into CSP issues when trying to upload images to Cloudinary on the client side. Things worked fine when I am running the React app on the Firebase emulator. Already updated the CSP. I ...
Sati's user avatar
  • 728
0 votes
1 answer
48 views

I’m using Payload CMS (v3.35.1) with a Next.js frontend and PostgreSQL on Render. I'm trying to fully integrate Cloudinary for media uploads using @jhb.software/payload-cloudinary-plugin. I’ve gone ...
Mario Epsley's user avatar
0 votes
1 answer
61 views

On the product edit page, if you want to send the same images, you'll need to click the button and select "Same Images" again. The images are uploaded to Cloudinary as URLs, and they don't ...
eslam wael's user avatar
1 vote
1 answer
57 views

I'm building a Travel Log app using Node.js/Express, and I have a controller that handles creating a new travel log. Right now, I'm testing my API using Postman (no frontend yet). Users can optionally ...
Anjay P.P's user avatar
0 votes
1 answer
327 views

I am using Cloudinary to upload document files (like Excel, DOCX, PDF) in my Java Spring Boot application. However, when uploading, the returned URL does not allow downloading the file in the correct ...
Code-forever's user avatar
0 votes
1 answer
126 views

I wanted to use Cloudinary's API to upload images from the client side for my project. This is an example from Cloudinary's docs to make signed requests from client side: Link to project. The project ...
Manav's user avatar
  • 1
1 vote
1 answer
147 views

I'm developing a Django application that uses Cloudinary for image storage. When running the project locally, everything works fine, and images upload successfully. However, when I deploy the project ...
Josue Yael Guerrero Priego's user avatar
-1 votes
1 answer
246 views

I try make an app like instagram. Using nextjs 15 app router. For file storage i'm using cloudinary. Everything is fine in development but in production error occurs. When i try to perform like post ...
sony boy's user avatar
0 votes
0 answers
46 views

I am trying to create a web prototype for an exam which requires to upload images to the cloud, so I chose Cloudinary. The problem I am encountering is that, when I make the following axios request to ...
NachoK66's user avatar
0 votes
0 answers
29 views

I’m new here and need some help with securing video links on Cloudinary. I’m using Python to upload a video as private and also setting up strict transformations, but changing the signature in the URL ...
alexfeigelman's user avatar
1 vote
1 answer
34 views

When I fetch image data using admin.search, all the image urls has co_black,e_colorize:70 which makes the image darker. I did not gave any transformation options when I both instantiate and send ...
GCnomore's user avatar
  • 134
1 vote
0 answers
250 views

I've tried to use CloudinaryStorage (the Multer engine) so I don't have to save the image on the server before uploading it to the cloud. However, whenever I make a request, the response says, "...
mohamedchine's user avatar
0 votes
0 answers
49 views

I am trying to upload docx file to cloudinary with multer-storage-cloudinary. Here is the code I use const storage = new CloudinaryStorage({ cloudinary, params: async (req, file) => ({ ...
Mehmet Emre Topdal's user avatar
0 votes
0 answers
39 views

I have an app where a user registers a post with title, a text and an image. The image is uploaded to a cloud storage service (i'm using cloudinary), and the generated url is used to display the image ...
Davi Pereira's user avatar
1 vote
0 answers
239 views

I've uploaded my nextjs app to vercel, cloudinary doesn't seem to throw any errors at me and is storing my images just and I can display them on the app just fine. When I push my commit to github/...
cudnn_account's user avatar
0 votes
0 answers
174 views

I’ve been following a tutorial from YouTube and encountered an error when trying to test my API with Thunder Client. Despite my debugging efforts, I haven’t been able to resolve it. I’d appreciate ...
Kabanga David's user avatar
0 votes
0 answers
53 views

I have the following Teacher model: class Teacher(models.Model): ... # Image Field image = models.ImageField(upload_to='teacher_images/', blank=False, null=False) # Metadata ... ...
jahantaila's user avatar
0 votes
1 answer
97 views

I am creating a request that takes an image file. The server uploads it to Cloudinary, and I get back the image_url. For some reason, I am getting error 503. Both the BE and Postman are working fine. ...
Razvan Razvi's user avatar
1 vote
0 answers
151 views

I am using CldVideoPlayer to playback video for my users. I have a component where I rendered the CldVideoPlayer and import to use anywhere I wanted to use it. The error that I am getting is this: ...
superkingz's user avatar
1 vote
1 answer
74 views

I have a NextJs application using a express backend api. I'm trying to upload user avatars to a folder in cloudinary. I have the cloudinar.js file with the cloudinary.config file that I call from ...
Stephen Scott Moore's user avatar
0 votes
0 answers
143 views

I have a video issue in my Next.js project. Specifically, when I navigate to my website from Instagram page, the Cloudinary video fails to load. I've noticed that this problem occurs only on iOS ...
unrecognized2304's user avatar
0 votes
1 answer
176 views

I'm trying to upload image from frontend using signature call approach but can't get this into work. The only parameter I'm assigning is timestamp. There's more I want to assign if i figure this out ...
GCnomore's user avatar
  • 134
0 votes
1 answer
68 views

I'm trying to use Cloudinary SDK's for Svelte and Django. I have a model with CloudinaryField: class Room(models.Model): ... avatar = CloudinaryField("image") class UserRoom(models....
Sherlock Holmes's user avatar
0 votes
0 answers
61 views

I am creating a form using next js (both backend and frontend) with many fields out of which one field is image upload (same is the name of the field in mongoose schema). First I upload the image on ...
user27581569's user avatar
2 votes
3 answers
96 views

I am building a logic to upload videos to cloudinary using node.js, next.js and multer package. I have a mongodb document that I would like to store the video url and publicid of the video once ...
valve's user avatar
  • 45
0 votes
1 answer
59 views

I am working on a social media platform where users can upload media files (images, videos, etc.) to Cloudinary, and I store the returned URL of that media in my MongoDB database. The media upload is ...
Ritik Singh's user avatar
3 votes
0 answers
942 views

I'm using EAS to build app directly so I didn't needed to compile prebuild i.e (.android) file Error: Gradle Build Failure with Expo Modules I am encountering the following errors when building my ...
Ayush Singh's user avatar
0 votes
1 answer
63 views

Error: Type '{ public_id: string; url: string; }[]' is missing the following properties from type 'DocumentArray<{ public_id: string; url: string; }>': isMongooseDocumentArray, create, id, $pop, ...
ProPotato's user avatar
0 votes
2 answers
165 views

I’m building a Node.js + Express.js server and using the dotenv package for environment variable management. While I can successfully access environment variables in most parts of my code, I’m ...
Ayush Tripathi's user avatar
2 votes
1 answer
75 views

I'm trying to upload files using React Hook Form and send them to my backend, where I'm using multer with Cloudinary for handling file uploads. When I test the API using Postman, req.files is ...
pareshaann's user avatar
0 votes
1 answer
45 views

In my src directory, there is a temp file, using multer I upload the file in the temp file but I cannot upload the file in cloudinary. Why it happen please help me, please help me Here is my code: ...
Harshit Sharma's user avatar
0 votes
1 answer
306 views

I imported cloudinary like that import { v2 as cloudinary } from "cloudinary"; But I am getting this error ./node_modules/cloudinary/lib/uploader.js:1:1 Module not found: Can't resolve 'fs' ...
Dimitar Kazakov's user avatar
0 votes
1 answer
50 views

I am just trying to built something like real time video recorder (not actually ),just trying to save video every few seconds in cloud. I wrote some code in reactjs, here when my webcam mounts , I ...
Nick S's user avatar
  • 1
0 votes
1 answer
270 views

I am doing the upload multiple files in cloudinary. Below is the code I used for upload single file: @Injectable() export class CloudinaryService { uploadFile(file: Express.Multer.File): Promise<...
LXT's user avatar
  • 875
-1 votes
1 answer
473 views

This is a remix project using Printful and Cloudinary API. I am having trouble figuring out how to get both objects to return correctly. In the loader function, I am returning a JSON for product info ...
Miles Donald's user avatar
-1 votes
1 answer
60 views

Using the docs I'm able to fetch images from Cloudinary to display on the remix website but I am running into 500 (internal server error) when trying to upload an image to the Cloudinary folder. Here ...
Miles Donald's user avatar
-1 votes
1 answer
136 views

Here is my form field, i pass images to imageupload to preview them before uploading in the database. Everything works fine if i upload one image but if i upload two images it overwrites the array ...
Alessio Tortora's user avatar
-1 votes
1 answer
136 views

i am using cloudinary for storing images with nodeJs environment, but facing this error Must supply api_key this is cloud config file const cloudinary = require('cloudinary').v2; const { ...
Shahab ali's user avatar
0 votes
1 answer
69 views

I am learning to upload images online using multer and Cloudinary, but for some reason the code stops working on cloudinary.uploader.upload() method. The images are getting stored at desired location ...
Gaurav Bisht's user avatar
0 votes
0 answers
273 views

Im using cloudinary widget to upload images. I display the images as a preview in my form so i can send it to the database. The problem that occurs is that only 1 image is displayed so my array with ...
Alessio Tortora's user avatar
1 vote
1 answer
106 views

I am displaying an image stored on Cloudinary, shown below: <div class="col-xs-4 col-sm-3 col-md-3 col-lg-3 mb-2"> <advanced-image [cldImg]="img" [plugins]...
batman567's user avatar
  • 957
0 votes
1 answer
97 views

My web application accesses adobe illustrator files from s3 object storage. I need to display a preview of these images. Web browsers don't support .ai files, so they need to be converted into a ...
Austin Poulson's user avatar
0 votes
0 answers
195 views

// image-upload.tsx "use client"; import { useState, useEffect } from "react"; import { Button } from "./button"; import { ImagePlusIcon, Trash } from "lucide-react&...
Jean Mako's user avatar
0 votes
1 answer
135 views

here I am asking my first question. I'm creating a scraping program connected to Telegram which, once scraped on Amazon via Selenium, obtains product information via requests and sends it as a post on ...
user avatar
0 votes
0 answers
111 views

My code works locally, and I can upload images to Cloudinary. However, after deploying my code to the server, Cloudinary returns a 400 error even though the rest of the code works fine. I believe the ...
Izzet's user avatar
  • 1

1
2 3 4 5
34