Hi, I am new to Postman. Recently I am studying blind SQL injection issue, just tested the response of different website. I found that there have different response between http and https.
Take Yahoo.com as an example, when I input the url like this:
If you check the console log, you should be able to see the two requests - one is the original URL with 301 status code and the second is the redirection URL.
Thanks for your reply! Unfortunately, I checked my Postman set up, the “Automatically follow redirects” are checked, but the results are the same ….
Thanks for sharing the error message - that error suggests some protocol issue. Also the fact that it is working fine on the web might mean the issue is associated with your local device.
To validate on this, can you try sending the same request using cURL command on Terminal window as below?
Thanks for trying cURL command! I can see you are receiving the same response as the response you receive when you send the request from Postman app. This indicates the issue is associated with your device rather than Postman. You can find some context on this specific error here: Trouble Shooting: What does 'The connection was reset' mean? - Quora
The next step you might want to try is:
to check if you can send the request from web browser
to check if you can send the request by changing your IP (e.g. by using VPN)
I tried to send request from another computer (using cmd and postman desktop app), it’s works normally. Maybe it’s related to my previous computer…
Thank you for your answer!