Migrating an AWS Service from React-Native Application to New Flutter Application.
I have come into trouble when it comes to getting the signed url to access images. I get the following error when trying to access them using the given url:
Handshake error in client (OS Error: CERTIFICATE_VERIFY_FAILED: application verification failure(handshake.cc:393)
when inspecting the URL outputs between flutter and react-native's sdk functions, I did notice that the host construction was reversed
s3.{region}.amazonaws.com/{bucketname} In react native {bucketname}.s3.{region}.amazonaws.com/ In Flutter
and tried a string operation to match these up as one quick way to solve this issue, resulting in a 403 error.
I don't have credentials to access the server, only all the setup details from the react-native application. So if some extra setup is needed in AWS to support the flutter's output, please let me know so I can communicate this directly to someone with credentials.
Thanks