英文:
How to find IP address of Postman?
问题
每当我们访问一些受保护的API时,我们会遇到一些问题,比如禁止请求...基本上是因为安全原因,我们不能访问API。为了解决这个问题,我们必须将我们的IP地址列入白名单。现在的问题是如何找到Postman的IP地址。
以前我用另一种方式解决了这个问题,现在我有了解决方案。
英文:
Whenever we are hitting some secured api's, at that time we face some issue like Forbidden request... basically because of security reason we can't hit api. To resolve this Problem we have to whitelist our ip address. Now Question is that how to find Postman IP address.
Previously I done this with another way, right now I have solution for this.
答案1
得分: 1
发送请求到 https://httpbin.org/ip,它会响应 IP 地址。使用该 IP 地址进行白名单设置。
英文:
Send request to https://httpbin.org/ip it responds with ip. Use that ip to whitelist.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论