Let's say we have a file called "my file.png" in the "my-bucket" bucket on s3. The following code:
val plays3 = new ConcreteS3Service(key, secret)
plays3.download("my-bucket", "my%20file.png", None)
will return a BadRequest("Error downloading"), even though https://s3.amazonaws.com/my-bucket/my%20file.png is a valid resource on s3.
Let's say we have a file called "my file.png" in the "my-bucket" bucket on s3. The following code:
will return a
BadRequest("Error downloading"), even thoughhttps://s3.amazonaws.com/my-bucket/my%20file.pngis a valid resource on s3.