I have the AWS File uploader plugin but I need to save files at a lower level than the bucket, for example:
currently I can only save things in
bucket-name/dir1/file.txt
(from now on path1)
but I need to save things from a more complex file structure such as
bucket-name/dir1/dir2/dir2/file.txt
(from now on path2)
if I try to do it this second way I get this error:
The request signature we calculated does not match the signature you provided. Check your key and signing method.
this error only happens if I try to save the file as path2, not path1.
my question is, can it be done? and how?
thanks