Currently using Postman For Windows
Version: 11.12.0
UI version: 11.12.0-ui-240903-1253
Desktop platform version: 11.12.0
Architecture: x64
OS platform: win32 10.0.22631
Back in May, I was able to test our API server running in Azure with a URL like this:
https://example.com:443/api/1/widgets
I made additions to our API last Friday (September 13th!) and now our firewall is blocking the requests, which according to our firewall admins, is likely because the βHostβ header includes the port number:
Host: βexample.com:443β
If we remove the port number, everything works as expected:
https://example.com/api/1/widgets
Host: βexample.comβ
Firewall is happy and API server receives and responds to the request.
I would like to know if there have been any changes in Postman since May that would affect how the Host header is populated, or anything else that might be helpful in troubleshooting this.
Of course, it may also be a configuration issue in our firewall, but wanted to check on the Postman side just for completeness.
Thanks