-
Unknown API key
I am creating a mern stack social media app, in which i am taking photos through multer and storing them in cloudinary, but cloudinary is constantly giving this error: Cloudinary Upload Error: { message: "Unknown API key '8799...',", name: 'Error', http_code: 401 }
-
Refused to load the image because it violates the following Content Security Policy directive:
I used react js and node js for studying project, however after deploy and make npm run build the image could not be show in web frontend however its link received correctly
-
Named transformation with user-defined variables not working
I'm working with Strict Transformations mode disabled and I'm trying the following named transformation (portfolio_color_replacement) with user-defined variables: My original image looks like this: If I try to use the replace color effect like this…
-
Does Cloudinary support Image(photo) comparison & recognition?
Assume I have a bunch of photos/images uploaded in Cloudinary. I have a new photo/image and want to check if that photo/image is already there. Is there way to ask Cloudinary to compare and recognize. The object for comparison can be a photo of a human face or image of a building, flower pot etc .... We are using…
-
Invalid JSON response from server
Hello. So in my Spring application I have this CloudinaryService class with this function that's supposed to take a Base64-enconded image and upload it to Cloudinary: public String uploadFileFromBase64(String base64) { try { @SuppressWarnings("rawtypes") Map uploadedFile = cloudinary.uploader().upload(base64, // the error…
-
Why are my images not showing once deployed?
Images are loading on localhost, but when deployed to heroku no images. Not even css background images. I have my env variables set in another webapp with the same keys. It works fine on the other app that is also deployed to heroku.
-
API call limit per month
Good day, I would like to know what effect would reaching the 25 000 API calls per month have on the free plan. Will it not allow me to make anymore API calls for the month or would it throttle my subsequent API calls? I only wish to use Cloudinary to host images and provide the direct link so the images can be imported by…
-
facing the error of SOCKET connection Timeout
im trying to upload a local disk image to cloudinary by using multer(upload) as a middleware. code const uploadOnCloudinary = async (localFilePath) => { try { if (!localFilePath) return null //upload the file on cloudinary const response = await cloudinary.uploader.upload(localFilePath, { resource_type: "auto" }) // file…
-
Is it possible to highlight specific words within subtitles of the video?
Hi. We're looking at Cloudinary to transform videos. We were able to set up a bunch of transformations via API and SDK. We also generated and added subtitles to a video (via SRT-file). But a very important thing for us is to be able to highlight specific words in subtitles. We know that it's possible to customize the whole…
-
Make file available upon user button click.
Using Node.js/Next.js. My API grabs some data, generates an excel file and then uploads the file to Cloudinary. When the user clicks a button I need the excel file to be available to them for download. It appears the excel file link is saved in result.secure_url. I'm stuck on how to get this link into a clickable button. I…
-
cloudinary images on localhost
I am building a site on Pantheon. Using Lando for local dev. I added images on local. Cloudinary is not syncing on localhost. On the dev instance of Pantheon it doesn't sync either because it says the images are External Images. When I run a systems report and try to download the site crashes with this error: Fatal error:…
-
Transformation
Hi All! I Ran this command Transformation all my images, it's says all done but i dont see the changes, and the updated image return with the original info. what's wrong? const result = await cloudinary.api.resources({ type: 'upload', max_results: 500 }); for (const image of result.resources) { const { public_id, format }…
-
NPM Version of Upload widget
Hi is there a version of the Upload Widget that can be downloaded as a node module (opposed to using the CDN) In our use case, we are building an angular application that gets embedded in another application and does not have access to the index.html (because of the build process) Thanks!
-
I just need to use auto captioning in cloudinary AI content analysis but no caption is added plz hel
var cloudinary = require('cloudinary').v2; cloudinary.config({ cloud_name: 'dlfaxu97v', api_key: '444767835834191', api_secret: 'DpC-5IFjR870n8PybNVv5q78fCw' }); const uploadImage = async (imagePath) => { // Use the uploaded file's name as the asset's public ID and // allow overwriting the asset with new versions const…
-
export 'audio' (imported as 'audio') was not found in '@cloudinary/url-gen/qualifiers/source'
Hello, I want to remove the existing audio from video and want to add an overlay of audio. I'm using it in react sdk and refered using this https://cloudinary.com/documentation/video_layers#audio_overlays there i can see import { source } from "@cloudinary/url-gen/actions/overlay"; import { audio } from…