在Linux下,Postman可以通过系统代理设置来使用代理服务器。以下是设置步骤:
/.bashrc
或/.bash_profile
文件(取决于你的系统配置)。export http_proxy=http://your_proxy_server:port
export https_proxy=http://your_proxy_server:port
将 your_proxy_server
和 port
替换为你的代理服务器的地址和端口。source /.bashrc
或source /.bash_profile
现在,Postman应该已经通过代理服务器进行网络请求了。
对于Ubuntu系统的用户,还可以通过图形界面来设置Postman的代理:
通过以上步骤,你应该能够在Linux系统中的Postman里成功设置代理。