首页 文章

Postman HTTPS请求自定义端口

提问于
浏览
0

我'm trying to send a HTTPS GET request to a server on a custom port (not 443) using Postman. My issue is that the request is never done - when watching traffic to that particular IP using Wireshark there'没有包出去 . 我假设Postman有一个如何指定URL的问题,如下所示: https://example.com:9876/api/request . 删除端口,以便请求看起来像这样: https://example.com/api/request 修复了请求未完成的问题 - 它被发送,但没有发送到我需要它发送的端口 - 默认443端口 .

如果我从URL的前面删除https://部分: example.com:9876/api/request ,请求在所需的端口上完成,但是以纯文本形式完成(没有完成TLS握手) .

还有另一种指定目标端口的方法,同时还指定我想在Postman中使用HTTPS吗?

1 回答

  • 1

    在当前日期(2017年9月6日),这是Postman中的已知错误 .

    更多细节可以在github上看到

相关问题