I have a rather simple task. I want to test uploading a file using Postman to my Amazon s3 bucket. Postman keeps erroring out saying "Could not get any response". Screenshot of my Postman configuration is below... any ideas why I can't do a simple upload to S3? (yes my signing credentials are correct)
Asked
Active
Viewed 3.1k times
12
-
Can you try importing the relevant cert in Postman - http://blog.getpostman.com/2014/01/28/using-self-signed-certificates-with-postman/? – Osiris Jul 28 '15 at 09:23
2 Answers
3
I know this is an old post but just in case someone got stuck in the same issue.
In your screenshot the second reason for the issue might be the SSL and it is the issue. I don't know why; but AWS is providing S3 objects with self-signed SSL certificates and this is blocked by the chrome browser. If you copy the URL from postman to the browser it will be something like that.
following this blog post from postman here will solve the issue depending on your OS.
Summing up the solution for windows (other platforms on the blog link):
- Copy the URL into the chrome browser and proceed anyway.
- Click on the lock icon at beside link and save the certificate.
- Go to Chrome > Settings, search for SSL (chrome://settings/search#ssl) and click on Manage certificates.
- Import the certificate and restart both chrome and postman
- Use the link again in Postman and it will work.

Ahmed Hassanien
- 527
- 5
- 18
1
Follow this article: https://medium.com/@christinavhastenrath/testing-file-uploads-to-aws-s3-with-iam-user-credentials-in-postman-5026fbde3ca6
Note: Add authorization data to
to Request URL
in authoriztion.

Farhan
- 1,445
- 16
- 24