i’m trying to bind s3 file(image) in repeat, i was unable image,im using the $key
S3 allow you to download files only if they are “public”. Usually S3 require digital signature for a direct download or you need use get file component from your website.
If you want to make a link directly to image stored in a S3 you need to give full address not only the key, as key mention only the folders.
I.e.:
A file stored in a S3 server should have an address more or like (I m writing from mobile so I going with memory only):
HTTP:// bucket.ams1.server.com/folder1/images/hello.jpg
While the key is only:
/folder1/images/hello.jpg
This works only if file is categorised as public.
If not you must use get file component or use sign download component for direct download from S3 to user’s browser
Can the sign download url or get file, download a list of files or just a single file
Thanks for your responses, i have been to display all the list of images
- I used the s3 list files
- I used a repeat with expression - listfiles.content(array)
- In the repeat steps, i added a sign download url, the key = the repeat key.
*some files are private, some are public… They were all loaded irrespective of their privacy status.
Thsnks



