Cloudinary:Folder create while fetching remote images - cloudinary

My images are exist in s3Bucket and i am fetching remote images like
s3Url = "http://s3amazon.com/dev/bucket/dev/25287/sample.jpg"
cloudinary.url().transformation(new Transformation().width(200).height(200).crop("scale")).format("webp").type("fetch").generate(s3Url);
Images are being successfully stored in my cloudinary account,but i want to store images inside dev folder in cloudinary account.
How can i create folder while fetching remote images ?

Related

How to setup S3 with Pocketbase

I am new to Pocketbase. I found that Pocketbase offers an S3 file system config but I dont know how to set it up completely. Currently, I am uploading my images to S3 separately then save the link to the DB.
I am setting my bucket publicly accessible, if possible, do you know if I can set my bucket only accessible to pocketbase?

Is it possible for Vue.js to add data to a file in AWS S3 bucket?

I am developing a simple application by Vue.js, which is trying to combine couples of strings as a array and name it as a new name. Now the problem is how can I save the combined data to some place so that I can access the combined data in the future. I am expecting I can save the data into AWS S3, however local is acceptable(such as public folder in the Vue.js code structure)
You can't save data into anything local from the client application (browser-run), unless it's installed as a standalone. What you need is to use AWS S3 JS SDK to upload directly into the bucket.

How can I set a file upload function?

I am creating an SAPUI5 WebApp with an file upload function. I try this example from SAPUi5 Explored: sap.m.sample.UploadCollection
I try with my trial account in SAP WebIDE to set the upload function ( Upload Collection)
The issue is, not allowing to upload a file in the project folder or local desktop folder.
If I upload a file it appears but i can't open it and I get a 405 HTTP
error.
Any Ideas, what the problem is?
like you see already in your posts comments, you need a backend for this task. The UploadCollection control is only usable with a backend in the background which receives the transmitted file from the control.
On the page https://sapui5.hana.ondemand.com/#/api/sap.m.UploadCollection you see
This control allows you to upload single or multiple files from your devices (desktop, tablet or phone) and attach them to the application
while you can replace "application" with "receiving backend"
Indipendent of this may I allowed to ask where do you think the file should be uploaded when not to a backend system? I mean when you choose a file from your local storage it doesn't make any sense to upload it again to your local storage?!

How can I export all contents to my local drive from cloudinary?

Is there any method to download all contents in cloudinary as one zip file or download all contents using any plugin.
I have multiple folders and subfolders containing images in Cloudinary.
Bulk downloading images from your Cloudinary account can currently be done in the following ways:
Using the Admin API. Listing all resources and extracting their URLs for download.
Download as a zip file using the ZIP generation API
Backup to a private S3 bucket. Please see - http://support.cloudinary.com/hc/en-us/articles/203744391-How-do-I-grant-Cloudinary-with-the-permissions-to-backup-on-my-private-S3-bucket-

Is it possible to fetch images from S3 to Ec2?

I have the website built in Ec2. I want to put all images in S3 and then they are served on the website which is on Ec2. So how do I go about fetching images to act as images in img src code on pages in ec2?
Thanks
This might be helpful:
http://aws.typepad.com/aws/2010/11/amazon-cloudfront-support-for-custom-origins.html