I am trying to use boto api to upload photos to Amazon S3. I can successfully upload photos there if I haven't specified the Canned ACL.
But if I specified ACL as follow. I got the following error.
mp = self._bucket.initiate_multipart_upload(name)
pool = Pool(processes=self.NUM_PARALLEL_PROCESSES)
pool.apply_async(mp.upload_part_from_file(fp=buffer, part_num=counter, headers=headers, policy='public-read'))
Error as follow.
<Error><Code>InvalidArgument</Code><Message>The specified header is not valid in this context</Message><ArgumentValue>public-read</ArgumentValue><ArgumentName>x-amz-acl</ArgumentName><RequestId>xxx</RequestId><HostId>xxx</HostId></Error>
I tried for a long time but still cannot get any hints. Anyone knows why?
Thanks!