I am generating presigned post url using this
response = s3.generate_presigned_post(
'uploads',
'myurl/24a5c08c2e64/${filename}',
Fields={
'x-amz-meta-id': id,
},
Conditions=[
["starts-with", "$key", "myurl/"],
{'x-amz-meta-id': id},
],
ExpiresIn=(3*60*60),
)
but I am unable to upload file because I am not getting x-amz-security-token in response . so what could be reason ? please help
that's how I am uploading using Postman and getting Access Denied error