We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bucket_name = "a.example.com" ExAws.Config.new(:s3) |> Map.put(:access_key_id, s3_access_key) |> Map.put(:secret_access_key, s3_secret_key) |> ExAws.S3.presigned_url( :get, bucket_name, "test1.pdf", expires_in: 1000 )
This generates url of the format https://s3.ap-south-1.amazonaws.com/a.example.com/test1.pdf?....
https://s3.ap-south-1.amazonaws.com/a.example.com/test1.pdf?....
I need url in the below format https://a.example.com/test1.pdf?....
https://a.example.com/test1.pdf?....
Whats missing here?? Please help
The text was updated successfully, but these errors were encountered:
bucket_as_host
This issue has been resolved in recent PR#156
Sorry, something went wrong.
No branches or pull requests
Current behavior
This generates url of the format
https://s3.ap-south-1.amazonaws.com/a.example.com/test1.pdf?....
Expected behavior
I need url in the below format
https://a.example.com/test1.pdf?....
Whats missing here??
Please help
The text was updated successfully, but these errors were encountered: