Hey everyone, I'm working on a simple project where I need to upload an image, retrieve it, and display it to the user from S3. I've successfully managed to upload and retrieve the image.
I'm using import { getUrl } from "aws-amplify/src/storage". When getUrl returns the URL, I try to use it like this: <Image source={{ uri: <s3_image_url> }} />.
However, it's not working when I use the returned URL directly, but if I manually copy the link and hard-code it, it works fine. I'm using Cognito Pools for authentication.
Has anyone encountered this issue or have any insights on how to solve it?